Skip to content

Commit ab188ea

Browse files
committed
ci: update jobs to run off of latest virtual environment and node 16
1 parent 3baae59 commit ab188ea

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/release-on-merge.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ on:
99
- beta
1010
jobs:
1111
release:
12-
runs-on: ubuntu-18.04
12+
runs-on: ubuntu-20.04
1313
concurrency: ${{ github.ref }}
1414
steps:
1515
- uses: actions/checkout@v3
1616
- uses: actions/setup-node@v3
1717
with:
18-
node-version: '12'
18+
node-version: '16'
1919
- run: yarn install
2020
- run: yarn package
2121
- name: Semantic Release

.github/workflows/test-on-pull-request.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ on:
44

55
jobs:
66
test:
7-
runs-on: ubuntu-18.04
7+
runs-on: ubuntu-20.04
88
concurrency: ${{ github.ref }}
99
steps:
1010
- uses: actions/checkout@v3
1111
- uses: actions/setup-node@v3
1212
with:
13-
node-version: '12'
13+
node-version: '16'
1414
- run: yarn install
1515
- run: yarn lint
1616
- name: commit linting changes

0 commit comments

Comments
 (0)