-
-
Notifications
You must be signed in to change notification settings - Fork 177
50 lines (41 loc) · 1.05 KB
/
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
42
43
44
45
46
47
48
49
50
name: ci
on:
push:
branches: [ master ]
paths:
- src
- test
- package.json
- .github/workflows/ci.yml
jobs:
test:
runs-on: ubuntu-20.04
name: Test on Node 20
steps:
- name: Checkout
uses: actions/checkout@v4
- name: PNPM setup
uses: pnpm/action-setup@v3
- name: Deno Setup
uses: denoland/setup-deno@v2
with:
deno-version: v2.x
- name: Node Setup
uses: actions/setup-node@v4
with:
node-version: 20
cache: pnpm
- name: Install Dependencies
run: pnpm install --no-frozen-lockfile
- name: Install Playwright
run: pnpm exec playwright install
- name: Lint
run: pnpm lint
- name: Build
run: pnpm build
- name: ViTest
run: pnpm test
- name: Upload coverage report to coveralls.io...
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}