Skip to content

Commit 8ad52d7

Browse files
committed
Action versions update
1 parent 4519d13 commit 8ad52d7

File tree

1 file changed

+16
-15
lines changed

1 file changed

+16
-15
lines changed

.github/workflows/ci.yml

Lines changed: 16 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -3,27 +3,28 @@ name: CI Build
33
on:
44
push:
55
branches:
6-
- '*'
7-
- '!main'
6+
- '*'
7+
- '!main'
88
paths-ignore:
9-
- README.md
10-
- CHANGELOG.md
9+
- README.md
10+
- CHANGELOG.md
1111

1212
jobs:
1313
build:
1414
runs-on: ubuntu-latest
1515

1616
steps:
17-
- uses: actions/checkout@v2
17+
- name: Checkout repository
18+
uses: actions/checkout@v3
1819

19-
- name: Set up Node.js
20-
uses: actions/setup-node@v1
21-
with:
22-
node-version: 16
20+
- name: Set up Node.js
21+
uses: actions/setup-node@v3
22+
with:
23+
node-version: 16
2324

24-
- name: Install dependencies
25-
run: npm ci
26-
- name: Test with Jest
27-
run: npm run test
28-
- name: Build with npm
29-
run: npm run build
25+
- name: Install dependencies
26+
run: npm ci
27+
- name: Test with Jest
28+
run: npm run test
29+
- name: Build with npm
30+
run: npm run build

0 commit comments

Comments
 (0)