Skip to content

Commit 2502a34

Browse files
authored
Merge pull request #64 from cloudnc/fix/ci-upgrade-ubuntu-20-10
fix(CI): upgrade to ubuntu 20.10
2 parents a5a0135 + c2a1346 commit 2502a34

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/main.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,17 @@ on: [push]
77

88
jobs:
99
build:
10-
1110
# Machine environment:
1211
# https://help.github.com/en/articles/software-in-virtual-environments-for-github-actions#ubuntu-1804-lts
1312
# We specify the Node.js version manually below, and use versioned Chrome from Puppeteer.
14-
runs-on: ubuntu-18.04
13+
runs-on: ubuntu-latest
1514

1615
steps:
17-
- uses: actions/checkout@v1
18-
- name: Use Node.js 16
19-
uses: actions/setup-node@v1
16+
- uses: actions/checkout@v4
17+
- name: Use Node.js 20.9.0
18+
uses: actions/setup-node@v4
2019
with:
21-
node-version: 16
20+
node-version: 20.9.0
2221
- name: Install dependencies
2322
run: yarn --frozen-lockfile --non-interactive --no-progress
2423
- name: Lint Demo

.nvmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
v20.9.0

0 commit comments

Comments
 (0)