Skip to content

Commit

Permalink
Chore: Upgrade node.js version to v16 in pipelines
Browse files Browse the repository at this point in the history
  * Node.js v16 is current LTS
  • Loading branch information
literat committed Nov 8, 2021
1 parent 2e91e31 commit e51afc9
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/commitlint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Set up Node
uses: actions/setup-node@v2
with:
node-version: 14
node-version: 16

- name: Fetch Git history
run: git fetch --no-tags --depth=50 origin main
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Set up Node
uses: actions/setup-node@v2
with:
node-version: 14
node-version: 16

- name: Fetch Git history
run: git fetch --no-tags --depth=50 origin main
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: 14
node-version: 16

- name: Install dependencies
run: yarn install --frozen-lockfile

- name: Disable husky commit hooks
run: yarn remove-prepare
run: npm set-script prepare ""

- name: Build
run: yarn build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: 14
node-version: 16

- name: Install dependencies
run: yarn install --frozen-lockfile
Expand Down

0 comments on commit e51afc9

Please sign in to comment.