Skip to content

Commit

Permalink
chore: upgrade GitHub actions workflow to node 18 (#71)
Browse files Browse the repository at this point in the history
  • Loading branch information
EmmanuelRoux authored Nov 12, 2023
1 parent b234a7b commit e74e96a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
persist-credentials: false
- uses: actions/setup-node@v3
with:
node-version: 16.13.2
node-version: 18
cache: npm
- run: npm install

Expand All @@ -26,7 +26,7 @@ jobs:
persist-credentials: false
- uses: actions/setup-node@v3
with:
node-version: 16.13.2
node-version: 18
cache: npm
- run: npm install
- run: npm run lint
Expand All @@ -40,7 +40,7 @@ jobs:
persist-credentials: false
- uses: actions/setup-node@v3
with:
node-version: 16.13.2
node-version: 18
cache: npm
- run: npm install
- run: npm run check-missing-api
Expand All @@ -54,7 +54,7 @@ jobs:
persist-credentials: false
- uses: actions/setup-node@v3
with:
node-version: 16.13.2
node-version: 18
cache: npm
- run: npm install
- run: npm run build:lib
Expand Down Expand Up @@ -84,7 +84,7 @@ jobs:
persist-credentials: false
- uses: actions/setup-node@v3
with:
node-version: 16.13.2
node-version: 18
cache: npm
- run: echo -n "${GPG_SECRET_KEY}" > git_gpg_key.asc
- run: gpg --batch --yes --import git_gpg_key.asc
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16.13.2
node-version: 18
cache: npm
- run: npm install

Expand All @@ -22,7 +22,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16.13.2
node-version: 18
cache: npm
- run: npm install
- run: npm run lint
Expand All @@ -34,7 +34,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16.13.2
node-version: 18
cache: npm
- run: npm install
- run: npm run build:lib
Expand Down

0 comments on commit e74e96a

Please sign in to comment.