Skip to content

Commit

Permalink
build: run workflows with Node.js@18
Browse files Browse the repository at this point in the history
  • Loading branch information
codebytere committed Jun 5, 2022
1 parent faaa64b commit 0b9bfc2
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ on:

jobs:
build:
runs-on: macos-11
runs-on: macos-latest
steps:
- uses: actions/checkout@master
- name: Use Node.js 16.x
uses: actions/setup-node@v1
- uses: actions/checkout@v3
- name: Use Node.js 18.x
uses: actions/setup-node@v3
with:
version: 16.x
node-version: 18.x
- name: Lint
run: |
npm install
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ on:

jobs:
build:
runs-on: macos-11
runs-on: macos-latest
steps:
- uses: actions/checkout@master
- name: Use Node.js 16.x
uses: actions/setup-node@v1
- uses: actions/checkout@v3
- name: Use Node.js 18.x
uses: actions/setup-node@v3
with:
version: 16.x
node-version: 18.x
- name: npm install, build, and test
run: |
npm install
Expand Down

0 comments on commit 0b9bfc2

Please sign in to comment.