Skip to content

Commit 080fb0d

Browse files
committed
ci: bump node version to 18
1 parent 598f2a1 commit 080fb0d

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/build.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ jobs:
1313
- uses: actions/checkout@v2
1414
- uses: actions/setup-node@v2
1515
with:
16-
node-version: '17'
16+
node-version: '18'
1717
cache: 'yarn'
1818
- name: Install dependencies
1919
run: yarn
2020
- name: Test
2121
run: yarn test
2222
- name: Lint
23-
run: yarn lint
23+
run: yarn lint

.github/workflows/lint.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,16 @@ jobs:
88
- uses: actions/checkout@v2
99
- uses: actions/setup-node@v2
1010
with:
11-
node-version: '17'
11+
node-version: '18'
1212
cache: 'yarn'
1313
# Disable eslint annotations, which are already appended by the build action
1414
- run: |
1515
echo "::remove-matcher owner=eslint-compact::"
1616
echo "::remove-matcher owner=eslint-stylish::"
1717
- name: Install dependencies
1818
run: yarn
19-
# TODO: Remplace this with a github action that parses the output of eslint
19+
# TODO: Replace this with a github action that parses the output of eslint
2020
# and annotates the files: this step doesn't have all annotations working
2121
# Or, wait for github to fix it.
2222
- name: Lint
23-
run: yarn lint:fail-on-warnings
23+
run: yarn lint:fail-on-warnings

.github/workflows/release.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,17 @@ jobs:
1212
- uses: actions/checkout@v2
1313
- uses: actions/setup-node@v2
1414
with:
15-
node-version: '17'
15+
node-version: '18'
1616
cache: 'yarn'
1717
registry-url: https://registry.npmjs.org/
1818
- name: Install dependencies
1919
run: yarn
2020
- name: Test
2121
run: yarn test
2222
- name: Lint
23-
run: yarn lint
23+
run: yarn lint
2424
- run: npm publish --access public
2525
env:
2626
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
2727
- name: Documentation
28-
run: yarn doc:deploy
28+
run: yarn doc:deploy

0 commit comments

Comments
 (0)