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 90dea29 commit 24c8953Copy full SHA for 24c8953
.github/workflows/unit-tests.yml
@@ -0,0 +1,23 @@
1
+name: Unit Tests
2
+
3
+on:
4
+ push:
5
+ branches: [ "main" ]
6
+ pull_request:
7
8
9
+jobs:
10
+ test:
11
+ timeout-minutes: 30
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - uses: actions/checkout@v3
15
+ - uses: actions/setup-node@v3
16
+ with:
17
+ node-version: 18
18
+ - name: Install Dependencies
19
+ run: npm ci
20
+ - name: Install Playwright Browsers
21
+ run: npx playwright install --with-deps
22
+ - name: Run Unit Tests
23
+ run: npm run test
.npmignore
@@ -1,3 +1,4 @@
+.github/
node_modules
src
tests
0 commit comments