Skip to content

chore: Show deprecation banner, remove save/store functionality (#295) #629

chore: Show deprecation banner, remove save/store functionality (#295)

chore: Show deprecation banner, remove save/store functionality (#295) #629

Workflow file for this run

name: Frontend
on:
push:
branches: [main]
pull_request:
paths:
- '**.ts'
- '**.js'
- '**.json'
- '**.tsx'
- '.github/workflows/frontend.yml'
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node:
- 18
- 20
- 22
env:
DFX_VERSION: 0.24.3
SKIP_WASM: true
steps:
- uses: actions/checkout@v4
- name: Setup Node.js ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: 'npm'
cache-dependency-path: package-lock.json
- name: Install dfx
uses: dfinity/setup-dfx@main
with:
dfx-version: ${{ env.DFX_VERSION }}
- name: Install dfx dependencies
run: |
dfx cache install
cd $(dfx cache show)
- name: Start dfx
run: dfx start --background
- name: Build frontend
run: |
dfx canister create --all
npm install
dfx build react_app
- name: Stop dfx
run: dfx stop