From 144bc8b720478347b9b9e19cd23f5ea71cfb4392 Mon Sep 17 00:00:00 2001 From: Coltin Kifer Date: Fri, 6 Sep 2024 21:58:23 +0000 Subject: [PATCH] fix: upgrade ci to node 18 --- .github/workflows/ci.yml | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 549fbaa..7dbe6e7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,21 +9,21 @@ on: - master jobs: - smooth-job: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v2 - with: - node-version: '14' + smooth-job: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-node@v2 + with: + node-version: '18' - - name: Installing deps - run: npm install + - name: Installing deps + run: npm install - - name: Testing & Linting - run: | - npm run lint - npm run test + - name: Testing & Linting + run: | + npm run lint + npm run test - - name: Building packages - run: npm run build \ No newline at end of file + - name: Building packages + run: npm run build