Skip to content

Commit a5a8ecd

Browse files
committed
Enhance CI workflows and update linting configuration
- Updated package.json to include '--no-errors-on-unmatched' flag for linting and formatting scripts. - Added a new GitHub Actions workflow for code quality checks using Biome. - Refactored Playwright workflow to streamline dependency installation and testing commands.
1 parent 726845c commit a5a8ecd

File tree

3 files changed

+40
-19
lines changed

3 files changed

+40
-19
lines changed

.github/workflows/biome.yml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Code quality
2+
3+
on:
4+
push:
5+
pull_request:
6+
7+
jobs:
8+
quality:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Checkout
12+
uses: actions/checkout@v4
13+
- name: Setup Biome
14+
uses: biomejs/setup-biome@v2
15+
with:
16+
version: latest
17+
- name: Run Biome
18+
run: biome ci .

.github/workflows/playwright.yml

+18-18
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,27 @@
11
name: Playwright Tests
22
on:
33
push:
4-
branches: [ main, master ]
4+
branches: [main, master]
55
pull_request:
6-
branches: [ main, master ]
6+
branches: [main, master]
77
jobs:
88
test:
99
timeout-minutes: 60
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v4
13-
- uses: actions/setup-node@v4
14-
with:
15-
node-version: lts/*
16-
- name: Install dependencies
17-
run: npm install -g pnpm && pnpm install
18-
- name: Install Playwright Browsers
19-
run: pnpm exec playwright install --with-deps
20-
- name: Run Playwright tests
21-
run: pnpm exec playwright test
22-
- uses: actions/upload-artifact@v4
23-
if: ${{ !cancelled() }}
24-
with:
25-
name: playwright-report
26-
path: playwright-report/
27-
retention-days: 30
12+
- uses: actions/checkout@v4
13+
- uses: actions/setup-node@v4
14+
with:
15+
node-version: lts/*
16+
- name: Install dependencies
17+
run: npm run install-dependencies
18+
- name: Install Playwright Browsers
19+
run: npm exec playwright install --with-deps
20+
- name: Run Playwright tests
21+
run: cd examples/angular && npm run e2e
22+
- uses: actions/upload-artifact@v4
23+
if: ${{ !cancelled() }}
24+
with:
25+
name: playwright-report
26+
path: playwright-report/
27+
retention-days: 30

package.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@
2222
"lint-staged": "lint-staged"
2323
},
2424
"lint-staged": {
25-
"*": ["biome format --write", "biome lint --write"]
25+
"*": [
26+
"biome format --write --no-errors-on-unmatched",
27+
"biome lint --write --no-errors-on-unmatched"
28+
]
2629
}
2730
}

0 commit comments

Comments
 (0)