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 b7b1ae2 commit 62c518aCopy full SHA for 62c518a
.github/workflows/ci.yml
@@ -0,0 +1,29 @@
1
+name: CI
2
+on: pull_request
3
+jobs:
4
+ vdiff:
5
+ name: Visual diff tests
6
+ timeout-minutes: 10
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - name: Create GH Token
10
+ uses: actions/create-github-app-token@v1
11
+ id: gh-token
12
+ with:
13
+ app-id: ${{ vars.GH_TOKEN_APP_ID }}
14
+ private-key: ${{ secrets.GH_TOKEN_APP_PRIVATE_KEY }}
15
+ - name: Checkout
16
+ uses: actions/checkout@v4
17
18
+ persist-credentials: false
19
+ - name: Setup Node
20
+ uses: actions/setup-node@v4
21
22
+ node-version-file: .nvmrc
23
+ cache: npm
24
+ - name: Install dependencies
25
+ run: npm ci
26
+ - name: vdiff Tests
27
+ uses: BrightspaceUI/actions/vdiff@main
28
29
+ github-token: ${{ steps.gh-token.outputs.token }}
0 commit comments