Skip to content
This repository was archived by the owner on Jan 9, 2023. It is now read-only.

Commit 9ce9619

Browse files
committed
ci(nodejs): move from v12 to v14
1 parent 0655099 commit 9ce9619

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ${{ matrix.os }}
88
strategy:
99
matrix:
10-
node-version: [12.x, 14.x]
10+
node-version: [14.x]
1111
os: [macOS-latest, windows-latest, ubuntu-latest]
1212
steps:
1313
- run: git config --global core.autocrlf false # this is needed to prevent git changing EOL after cloning on Windows OS

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ jobs:
1313
- name: Setup Node.js
1414
uses: actions/setup-node@v1
1515
with:
16-
node-version: 12
16+
node-version: 14
1717
- name: Install dependencies
1818
run: npm install
1919
- name: Release
2020
env:
2121
GITHUB_TOKEN: ${{ secrets.BOT_PAT }}
22-
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
23-
run: npx semantic-release
22+
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
23+
run: npx semantic-release

0 commit comments

Comments
 (0)