We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 165daa3 commit 7e5c70fCopy full SHA for 7e5c70f
.github/workflows/unit-tests.yml
@@ -0,0 +1,25 @@
1
+name: Auth-React Unit Tests
2
+
3
+on:
4
+ pull_request:
5
+ types:
6
+ - opened
7
+ - reopened
8
+ - synchronize
9
+ push:
10
+ branches:
11
+ - master
12
+ - "v[0-9]+.[0-9]+"
13
+ tags:
14
+ - "(dev-)?v[0-9]+.[0-9]+.[0-9]+"
15
16
+jobs:
17
+ unit-tests:
18
+ runs-on: ubuntu-latest
19
+ steps:
20
+ - uses: actions/checkout@v4
21
+ - uses: actions/setup-node@v4
22
+ with:
23
+ node-version: 18
24
+ - run: npm install
25
+ - run: npm run test-unit
0 commit comments