diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1b14cb2..78b8c04 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,7 +24,7 @@ jobs: - name: "Use Node.js 18" uses: actions/setup-node@v2 with: - node-version: 18 + node-version: 20 cache: npm - name: "Install application" run: npm install --ignore-scripts @@ -34,7 +34,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [16, 18, 20] + node-version: [18, 20, 22] steps: - name: "Check out Git repository" uses: actions/checkout@v2 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2f0dd92..aba865a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -10,7 +10,7 @@ jobs: - uses: actions/checkout@v1 - uses: actions/setup-node@v2 with: - node-version: 18 + node-version: 20 cache: npm - run: npm install - uses: JS-DevTools/npm-publish@v1