Skip to content

Commit a92f70e

Browse files
Update workflows
1 parent 2f88c5e commit a92f70e

2 files changed

Lines changed: 23 additions & 3 deletions

File tree

.github/workflows/linter.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Linter
2+
3+
on: push
4+
5+
jobs:
6+
linter:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v4
10+
- name: Set up Node.js 23.x
11+
uses: actions/setup-node@v4
12+
with:
13+
node-version: 23.x
14+
15+
- name: Install dependencies
16+
run: yarn install --dev
17+
18+
- name: Lint files
19+
run: yarn run lint

.github/workflows/tests.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,22 +3,23 @@ name: Tests
33
on: push
44

55
jobs:
6-
build:
6+
tests:
77
runs-on: ubuntu-latest
88
steps:
99
- uses: actions/checkout@v4
1010
- name: Set up Node.js 23.x
1111
uses: actions/setup-node@v4
1212
with:
1313
node-version: 23.x
14+
1415
- name: Install dependencies
1516
run: yarn install --dev
16-
- name: Lint files
17-
run: yarn run lint
17+
1818
- name: Run tests
1919
run: yarn run test
2020
env:
2121
CI: true
22+
2223
- name: Upload coverage
2324
uses: codecov/codecov-action@v5
2425
with:

0 commit comments

Comments
 (0)