Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: upgrade main GitHub actions workflow to node 18 #71

Merged
merged 2 commits into from
Nov 12, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading