Skip to content

Commit 21111a1

Browse files
committed
Install concurrently to run sub tasks
1 parent 2486cef commit 21111a1

4 files changed

Lines changed: 894 additions & 816 deletions

File tree

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Lint, Build and Test
1+
name: End-to-end Tests
22
on:
33
push:
44
branches: [main, develop]
@@ -15,8 +15,6 @@ jobs:
1515
node-version: '14.x'
1616
- name: Install dependencies
1717
run: npm ci
18-
- name: Run compile (includes linting, prettier and building)
19-
run: npm run compile
2018
- name: Install Playwright Browsers
2119
run: npx playwright install --with-deps
2220
- name: Run Playwright tests

.github/workflows/validate.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Lint, Format and Build
2+
on:
3+
push:
4+
branches: [main, develop]
5+
pull_request:
6+
branches: [main, develop]
7+
jobs:
8+
compile:
9+
timeout-minutes: 60
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v2
13+
- uses: actions/setup-node@v2
14+
with:
15+
node-version: '14.x'
16+
- name: Install dependencies
17+
run: npm ci
18+
- name: Run code validation (includes linting, prettier and building)
19+
run: npm run validate

0 commit comments

Comments
 (0)