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.
Running Action
2 parents 11fe16b + 02094ce commit 60b1107Copy full SHA for 60b1107
.github/workflows/running.yml
@@ -0,0 +1,30 @@
1
+name: Running
2
+
3
+on:
4
+ pull_request:
5
+ types: [synchronize, opened, reopened]
6
+ push:
7
+ branches: [main]
8
+ workflow_dispatch:
9
10
+jobs:
11
+ install:
12
+ name: Install and Running
13
14
+ runs-on: ubuntu-latest
15
16
+ strategy:
17
+ matrix:
18
+ node-version: [16.x, 18.x, 20.x]
19
20
+ steps:
21
+ - uses: actions/checkout@v3
22
23
+ - name: Set up Chrome
24
+ uses: browser-actions/setup-chrome@v1
25
26
+ - name: Install
27
+ run: npm ci
28
29
+ - name: Running the program
30
+ run: npm start
.github/workflows/test.yml
@@ -18,7 +18,7 @@ jobs:
node-version: [16.x, 18.x, 20.x]
steps:
- - uses: actions/checkout@v2
- name: Install
run: npm ci
0 commit comments