Skip to content

Commit

Permalink
Update to Node 17 in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
fwcd committed Jun 8, 2022
1 parent d1c7698 commit f7144a0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ jobs:

strategy:
matrix:
node-version: [12.x, 14.x]
node-version: [17.x]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@ jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: olegtarasov/[email protected]
id: tag_name
with:
tagRegex: "v(.*)"
tagRegexGroup: 1
- name: Setup Node
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: '12'
node-version: '17'
- name: Install dependencies
run: npm install
- name: Compile extension
Expand Down

0 comments on commit f7144a0

Please sign in to comment.