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 4cbead3 commit 09c48acCopy full SHA for 09c48ac
.github/workflows/test.yml
@@ -0,0 +1,35 @@
1
+name: Test
2
+
3
+on:
4
+ push:
5
+ pull_request:
6
7
+permissions: {}
8
9
+jobs:
10
+ test:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v4
14
+ with:
15
+ persist-credentials: false
16
+ - name: Setup Node.js
17
+ uses: actions/setup-node@v4
18
19
+ node-version: 24
20
+ - name: Install Chromium
21
+ run: sudo snap install chromium
22
+ - name: Install xvfb
23
+ run: sudo apt-get install xvfb
24
+ - name: Test top level
25
+ run: |
26
+ yarn install
27
+ yarn presubmit
28
+ - name: Test packages
29
30
+ for package in "face-detection"; do
31
+ pushd "$package"
32
33
+ xvfb-run --auto-servernum yarn test
34
+ popd
35
+ done
0 commit comments