Skip to content

Commit

Permalink
ci: use Node.js 20.x (#92)
Browse files Browse the repository at this point in the history
  • Loading branch information
garrappachc authored Oct 5, 2023
1 parent bc87d2c commit 0916ea7
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

strategy:
matrix:
node-version: [16.x]
node-version: [20.x]

steps:
- name: Checkout repository
Expand Down
11 changes: 8 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,22 @@ on:
jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [20.x]

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: '16.x'
node-version: ${{ matrix.node-version }}
cache: yarn
registry-url: 'https://registry.npmjs.org'
scope: '@tf2pickup-org'
registry-url: "https://registry.npmjs.org"
scope: "@tf2pickup-org"

- name: Install dependencies
run: yarn install --immutable
Expand Down

0 comments on commit 0916ea7

Please sign in to comment.