Skip to content

Commit e1079eb

Browse files
authored
feat: node18 support (#181)
* feat: node 18 * chore: remove unneccesary yarn.lock * chore: use ubuntu 20.04 * chore: remove node 12 support * chore: remove node 17 support
1 parent f27bd20 commit e1079eb

File tree

2 files changed

+5
-4770
lines changed

2 files changed

+5
-4770
lines changed

.github/workflows/builds.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ jobs:
1313
runs-on: ${{ matrix.os }}
1414
strategy:
1515
matrix:
16-
os: [windows-2019, macos-10.15, ubuntu-18.04]
17-
node: [12, 14, 16, 17]
16+
os: [windows-2019, macos-10.15, ubuntu-20.04]
17+
node: [14, 16, 18]
1818
steps:
1919
- uses: actions/checkout@v2
2020
- uses: actions/setup-node@master
@@ -36,7 +36,7 @@ jobs:
3636
runs-on: ubuntu-18.04
3737
strategy:
3838
matrix:
39-
node: [12, 14, 16, 17]
39+
node: [14, 16, 18]
4040
fail-fast: true
4141
container:
4242
image: node:${{ matrix.node }}-alpine
@@ -58,14 +58,14 @@ jobs:
5858
name: alpine-${{ matrix.node }}-binary
5959
path: 'build/**/*.tar.gz'
6060
deploy:
61-
runs-on: ubuntu-18.04
61+
runs-on: ubuntu-20.04
6262
needs: [alpine, build]
6363
if: startsWith(github.ref, 'refs/tags/v')
6464
steps:
6565
- uses: actions/checkout@v2
6666
- uses: actions/setup-node@master
6767
with:
68-
node-version: 14
68+
node-version: 16
6969
- uses: actions/download-artifact@v2
7070
with:
7171
path: build

0 commit comments

Comments
 (0)