diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index b7d4aed..4b47396 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -5,15 +5,15 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node: ['14', '16', '18'] + node: [18, 20] steps: - uses: actions/checkout@v3 - - name: Use Node.js ${{ matrix.node-version }} + name: Use Node.js ${{ matrix.node }} uses: actions/setup-node@v3 with: - node-version: ${{ matrix.node-version }} + node-version: ${{ matrix.node }} - name: Install dependencies run: yarn install