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