diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a855e96..5baba8c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -7,7 +7,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-node@v2 with: - node-version: 16.x + node-version: 20.x cache: yarn - run: yarn install --immutable - run: yarn lint @@ -17,7 +17,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [14.x, 16.x] + node-version: [18.x, 20.x] steps: - uses: actions/checkout@v2 - name: Use Node.js ${{ matrix.node-version }} @@ -37,7 +37,7 @@ jobs: fetch-depth: 0 - uses: actions/setup-node@v2 with: - node-version: 16.x + node-version: 20.x cache: yarn - run: yarn install --immutable - name: Create release pull request or publish to npm diff --git a/.github/workflows/format.yml b/.github/workflows/format.yml index 8183c8c..1495e7e 100644 --- a/.github/workflows/format.yml +++ b/.github/workflows/format.yml @@ -9,7 +9,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-node@v1 with: - node-version: 16.x + node-version: 20.x - run: yarn install --immutable - run: yarn prettier --write . - name: Commit changes