We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b202294 commit 8512737Copy full SHA for 8512737
5 files changed
.github/workflows/test.yml
@@ -0,0 +1,17 @@
1
+name: 'test'
2
+
3
+on: [pull_request, push]
4
5
+permissions:
6
+ contents: read
7
8
+jobs:
9
+ test:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v3
13
+ - uses: ljharb/actions/node/install@main
14
+ name: 'nvm install lts/* && npm install'
15
+ - run: 'xvfb-run npm run test'
16
+ timeout-minutes: 1 # prevent browser hang if test fails
17
+ - run: 'npm run build'
.npmrc
@@ -0,0 +1 @@
+package-lock=false
0 commit comments