-
Notifications
You must be signed in to change notification settings - Fork 6
53 lines (52 loc) · 1.42 KB
/
frontend.yml
File metadata and controls
53 lines (52 loc) · 1.42 KB
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
51
52
53
name: Frontend ic_vetkeys CI
permissions: {}
on:
push:
branches:
- main
pull_request:
paths:
- frontend/ic_vetkeys/**
- backend/**/canisters/**
- package.json
- package-lock.json
- .github/workflows/frontend_ic_vetkeys.yml
- .github/workflows/provision-darwin.sh
- .github/workflows/provision-linux.sh
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
frontend_ic_vetkeys_linux:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
with:
persist-credentials: false
- name: Provision Linux
run: bash .github/workflows/provision-linux.sh
- name: Frontend Tests and Lint
run: |
set -eExuo pipefail
npm install
cd frontend/ic_vetkeys
npm run build
npm run test
npm run lint
frontend_ic_vetkeys_mac:
runs-on: macos-15
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
with:
persist-credentials: false
- name: Provision Darwin
run: |
bash .github/workflows/provision-darwin.sh
- name: Frontend Tests and Lint
run: |
set -eExuo pipefail
npm install
cd frontend/ic_vetkeys
npm run build
npm run test
npm run lint