-
Notifications
You must be signed in to change notification settings - Fork 22
41 lines (35 loc) · 884 Bytes
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
ci:
name: CI
runs-on: ${{ matrix.os }}
strategy:
matrix:
browser: [chromium, firefox]
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js environment
uses: actions/setup-node@v4
with:
node-version: 20.x
- name: Install Dependencies
run: yarn bootstrap
- name: Install Playwright Browsers
run: yarn playwright install --with-deps
- name: Run Tests
run: yarn test --browser.name=${{ env.BROWSER }} --browser.headless
env:
BROWSER: ${{ matrix.browser }}
- name: Codecov
uses: codecov/codecov-action@v1
- name: Build Project
run: yarn build