refactor stats #282
Workflow file for this run
This file contains 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 | |
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: | |
- 16 | |
- 18 | |
env: | |
DFX_VERSION: 0.14.3 | |
SKIP_WASM: true | |
MOC_VERSION: 0.9.8 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Node.js ${{ matrix.node }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node }} | |
cache: 'npm' | |
cache-dependency-path: package-lock.json | |
- name: Install dfx | |
run: | | |
echo y | DFX_VERSION=$DFX_VERSION bash -ci "$(curl -fsSL https://sdk.dfinity.org/install.sh)" | |
npm i -g ic-mops | |
dfx cache install | |
cd $(dfx cache show) | |
wget https://github.com/dfinity/motoko/releases/download/$MOC_VERSION/motoko-Linux-x86_64-$MOC_VERSION.tar.gz | |
tar zxvf motoko-Linux-x86_64-$MOC_VERSION.tar.gz | |
- 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 |