Skip to content

Commit 0120a85

Browse files
committed
Create running.yml
1 parent 11fe16b commit 0120a85

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

.github/workflows/running.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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@v2
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

0 commit comments

Comments
 (0)