Skip to content

Commit 942b569

Browse files
committed
Test workflow and use node-version 18 in CI
1 parent 68529fc commit 942b569

3 files changed

Lines changed: 16 additions & 2 deletions

File tree

.github/workflows/deps.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
token: ${{ steps.generate_token.outputs.token }}
2121
- uses: actions/setup-node@v2
2222
with:
23-
node-version: '16'
23+
node-version: '18'
2424
- run: curl https://deps.app/install.sh | bash -s -- -b $HOME/bin
2525
- run: $HOME/bin/deps ci
2626
env:

.github/workflows/nextrelease.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
steps:
1414
- uses: actions/setup-node@v2
1515
with:
16-
node-version: '16'
16+
node-version: '18'
1717
registry-url: 'https://registry.npmjs.org'
1818
- uses: dropseed/nextrelease@v2
1919
env:

.github/workflows/test.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: test
2+
3+
on: push
4+
5+
jobs:
6+
test:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v2
10+
- uses: actions/setup-node@v2
11+
with:
12+
node-version: '18'
13+
- run: yarn install
14+
- run: yarn run test

0 commit comments

Comments
 (0)