diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index fd30d6c..e32c1be 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node: [14, 16, 18] + node: [16, 18, 20] steps: - uses: actions/checkout@v3 - name: Cache node_modules diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4d11e3f..bce1efc 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -10,12 +10,14 @@ jobs: test: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Use Node.js - uses: actions/setup-node@v2 + uses: actions/setup-node@v3 with: - node-version: '18.x' + node-version: 18 + check-latest: true + registry-url: https://registry.npmjs.org/ - name: Install Dependencies run: npm install - name: Run Jest tests - run: npm run test \ No newline at end of file + run: npm run test