Skip to content

Commit

Permalink
chore: Remove Node.js 16 support
Browse files Browse the repository at this point in the history
  • Loading branch information
lym953 committed Jan 21, 2025
1 parent 353f1f2 commit 7e8ee6a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,16 @@ jobs:
- name: Checkout
uses: actions/checkout@v2

- name: Set up Node 16
- name: Set up Node 18
uses: actions/setup-node@v1
with:
node-version: 16
node-version: 18

- name: Cache Node modules
id: cache-node-modules
uses: actions/cache@v2
with:
path: '**/node_modules'
path: "**/node_modules"
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}-${{ matrix.working-dir }}

- name: Install dependencies
Expand Down Expand Up @@ -48,7 +48,7 @@ jobs:
strategy:
max-parallel: 4
matrix:
node-version: [16, 18, 20]
node-version: [18, 20]

steps:
- name: Checkout
Expand All @@ -63,9 +63,9 @@ jobs:
id: cache-node-modules
uses: actions/cache@v2
with:
path: '**/node_modules'
path: "**/node_modules"
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}-${{ matrix.working-dir }}

- name: Install common dependencies
working-directory: ./
run: yarn install
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/integration_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
- name: Checkout
uses: actions/checkout@v2

- name: Set up Node 16
- name: Set up Node 18
uses: actions/setup-node@v2
with:
node-version: 16
node-version: 18

- name: Cache Node modules
id: cache-node-modules
Expand Down

0 comments on commit 7e8ee6a

Please sign in to comment.