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 4ee6b47 commit f2893a5Copy full SHA for f2893a5
.github/workflows/playwright.yml renamed to .github/workflows/ci.yml
@@ -1,21 +1,29 @@
1
-name: Playwright Tests
+name: CI Checks
2
on:
3
push:
4
branches: [main]
5
pull_request:
6
7
jobs:
8
- test:
+ code_checks:
9
timeout-minutes: 10
10
runs-on: ubuntu-latest
11
steps:
12
- uses: actions/checkout@v3
13
- uses: actions/setup-node@v3
14
with:
15
node-version: 18
16
+
17
- name: Install dependencies
18
run: yarn
- - name: Install Playwright Browsers
19
20
+ - name: Prettier
21
+ run: npm run prettier
22
23
+ - name: ESLint
24
+ run: npm run lint
25
26
+ - name: Install Playwright browsers
27
run: yarn playwright:install
28
- name: Run Playwright tests
29
run: yarn playwright:test
0 commit comments