Skip to content

Commit 2d41091

Browse files
committed
chore: update workflow versions
1 parent 2aca8b3 commit 2d41091

File tree

2 files changed

+22
-22
lines changed

2 files changed

+22
-22
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ jobs:
2222
runs-on: ubuntu-latest
2323
steps:
2424
- name: Checkout
25-
uses: actions/checkout@v3
25+
uses: actions/checkout@v4
2626

2727
- name: Install Node.js
28-
uses: actions/setup-node@v3
28+
uses: actions/setup-node@v4
2929
with:
3030
node-version: 20
3131

.github/workflows/test.yml

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,29 @@
11
name: Run Lint and Tests
22

33
on:
4-
pull_request:
5-
branches: [main]
4+
pull_request:
5+
branches: [main]
66

77
jobs:
8-
build:
9-
runs-on: ubuntu-latest
10-
strategy:
11-
matrix:
12-
os: [ubuntu-latest, macOS-latest, windows-latest]
13-
node-version: [10.x, 18.x, 20.x]
14-
steps:
15-
- uses: actions/checkout@v3
8+
build:
9+
runs-on: ubuntu-latest
10+
strategy:
11+
matrix:
12+
os: [ubuntu-latest, macOS-latest, windows-latest]
13+
node-version: [18.x, 20.x]
14+
steps:
15+
- uses: actions/checkout@v4
1616

17-
- name: Use Node.js ${{ matrix.node-version }}
18-
uses: actions/setup-node@v3
19-
with:
20-
node-version: ${{ matrix.node-version }}
17+
- name: Use Node.js ${{ matrix.node-version }}
18+
uses: actions/setup-node@v4
19+
with:
20+
node-version: ${{ matrix.node-version }}
2121

22-
- name: Install dependencies
23-
run: npm install
22+
- name: Install dependencies
23+
run: npm install
2424

25-
- name: Lint
26-
run: npm run lint
25+
- name: Lint
26+
run: npm run lint
2727

28-
- name: Run tests
29-
run: npm test
28+
- name: Run tests
29+
run: npm test

0 commit comments

Comments
 (0)