We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b974853 commit 2e26070Copy full SHA for 2e26070
1 file changed
.github/workflows/build.yml
@@ -1,4 +1,4 @@
1
-name: Check building and linting
+name: Check testing building linting
2
3
on:
4
push:
@@ -41,4 +41,19 @@ jobs:
41
run: npm i
42
- name: Build the project
43
run: npm run build
44
-
+ test:
45
+ name: Run ava tests
46
+ runs-on: ubuntu-latest
47
+ permissions:
48
+ contents: read
49
+ steps:
50
+ - name: Set up NodeJS LTS
51
+ uses: actions/setup-node@v6
52
+ with:
53
+ node-version: 'lts/*'
54
+ - name: Checkout repository
55
+ uses: actions/checkout@v6
56
+ - name: Install dependencies
57
+ run: npm i
58
+ - name: Run tests
59
+ run: npm run test
0 commit comments