feat: CRP-2911 Modify AES-GCM encryption to be more robust #573
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Frontend ic_vetkeys CI | |
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@v4 | |
- 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@v4 | |
- 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 |