-
Notifications
You must be signed in to change notification settings - Fork 4
44 lines (35 loc) · 894 Bytes
/
main.yml
File metadata and controls
44 lines (35 loc) · 894 Bytes
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
name: CI/CD
on:
pull_request:
branches: [main]
push:
branches: [main]
workflow_dispatch:
permissions:
contents: read
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: [22]
os: [ubuntu-latest, macos-latest, windows-latest]
fail-fast: false
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- name: Install Pnpm
run: |
npm install -g corepack@latest --force
corepack enable
- name: Setup node
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6
with:
node-version: ${{ matrix.node }}
- name: Install dependencies
run: pnpm install
- name: Build project
run: pnpm build
- name: Run unit tests
run: pnpm test:unit
- name: Run e2e tests
run: pnpm test:e2e:setup && pnpm test:e2e