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.
2 parents f128e74 + 9d22613 commit 8b1e556Copy full SHA for 8b1e556
.github/workflows/test.yml
@@ -0,0 +1,32 @@
1
+name: Test
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - 'main'
7
+ pull_request:
8
+ workflow_dispatch:
9
10
+jobs:
11
+ test:
12
+ runs-on: ubuntu-22.04
13
14
+ strategy:
15
+ fail-fast: false
16
+ matrix:
17
+ framework:
18
+ ["angular","react","svelte","vue"]
19
20
+ name: Test examples
21
+ steps:
22
+ - name: Checkout
23
+ uses: actions/checkout@v3
24
+ - name: Setup Node.js
25
+ uses: actions/setup-node@v3
26
+ with:
27
+ node-version: 18
28
+ - name: Cypress test
29
+ uses: cypress-io/github-action@v5
30
31
+ component: true
32
+ working-directory: "${{ matrix.framework}}/my-awesome-app"
0 commit comments