-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathexamples-password-manager-with-metadata.yml
More file actions
49 lines (49 loc) · 1.46 KB
/
examples-password-manager-with-metadata.yml
File metadata and controls
49 lines (49 loc) · 1.46 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
# Known failure: https://dfinity.atlassian.net/browse/EM-7
name: examples-password-manager-with-metadata
on:
push:
branches:
- main
pull_request:
paths:
- examples/password_manager_with_metadata/**
- backend/**
- Cargo.toml
- Cargo.lock
- frontend/ic_vetkeys/**
- package.json
- package-lock.json
- .github/workflows/provision-darwin.sh
- .github/workflows/provision-linux.sh
- .github/workflows/examples-password-manager-with-metadata.yml
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
examples-password-manager-with-metadata-darwin:
runs-on: macos-15
steps:
- uses: actions/checkout@v4
- name: Provision Darwin
run: |
bash .github/workflows/provision-darwin.sh
- name: Deploy Password Manager With Metadata Darwin
run: |
set -eExuo pipefail
cd examples/password_manager_with_metadata
./deploy_locally.sh
cd frontend
npm run lint
examples-password-manager-with-metadata-linux:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Provision Linux
run: bash .github/workflows/provision-linux.sh
- name: Deploy Password Manager With Metadata Linux
run: |
set -eExuo pipefail
cd examples/password_manager_with_metadata
./deploy_locally.sh
cd frontend
npm run lint