diff options
-rw-r--r-- | .github/workflows/main.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 178cc9e..41d98c0 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -7,7 +7,7 @@ jobs: strategy: matrix: platform: [ubuntu-latest] - node: ['14', '16', '18'] + node: ['14', '16', '18', '20'] name: lint runs-on: ${{ matrix.platform }} steps: @@ -29,7 +29,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: - node-version: '18' + node-version: '20' - name: install dependencies run: yarn install --frozen-lockfile --ignore-engines --ignore-scripts - name: release |