Skip to content

Commit 977c8f3

Browse files
committed
chore: upgrade actions
1 parent cc73658 commit 977c8f3

File tree

2 files changed

+8
-10
lines changed

2 files changed

+8
-10
lines changed

.circleci/config.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
version: 2.1
22

33
jobs:
4-
54
build:
65
docker:
7-
- image: circleci/node:16.13.1
6+
- image: circleci/node:16.14.2
87
steps:
98
- checkout
109
- restore_cache:
@@ -26,7 +25,7 @@ jobs:
2625

2726
deploy-gh-pages:
2827
docker:
29-
- image: circleci/node:16.13.1
28+
- image: circleci/node:16.14.2
3029
steps:
3130
- checkout
3231
- restore_cache:

.github/workflows/linter.yaml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,17 @@
1-
name: Syntax linter
1+
name: Lint
22
on: [pull_request]
33

44
jobs:
55
lint:
6-
name: Syntax linter
6+
name: Lint
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v2
9+
- uses: actions/checkout@v3
1010
- name: Use Node.js
11-
uses: actions/setup-node@v2
11+
uses: actions/setup-node@v3
1212
with:
13-
node-version: 15
14-
- name: Install yarn
15-
run: npm install -g yarn
13+
node-version: 16
14+
cache: yarn
1615
- name: Install Dependencies
1716
run: yarn install
1817
- name: Check errors with ESLint

0 commit comments

Comments
 (0)