We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ce06d3f commit 00d931bCopy full SHA for 00d931b
2 files changed
.github/workflows/linter.yml
@@ -0,0 +1,17 @@
1
+name: Tests
2
+
3
+on: push
4
5
+jobs:
6
+ build:
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
+ - name: Install dependencies
15
+ run: yarn install --dev
16
+ - name: Lint files
17
+ run: yarn run lint
.github/workflows/tests.yaml
@@ -11,14 +11,15 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: 23.x
- name: Install dependencies
run: yarn install --dev
- - name: Lint files
- run: yarn run lint
18
- name: Run tests
19
run: yarn run test
20
env:
21
CI: true
22
23
- name: Upload coverage
24
uses: codecov/codecov-action@v5
25
0 commit comments