Skip to content

chore: pin GitHub Actions to commit SHAs #66

chore: pin GitHub Actions to commit SHAs

chore: pin GitHub Actions to commit SHAs #66

Workflow file for this run

name: CI Checks
env:
RUST_VERSION: 1.67.0
on:
push:
branches:
- main
pull_request:
jobs:
cargo-build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-22.04]
steps:
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
- uses: actions/cache@6f8efc29b200d32929f49075959781ed54ec270c # v3.5.0
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}-1
- name: Install Rust
run: |
rustup update $RUST_VERSION --no-self-update
rustup default $RUST_VERSION
rustup target add wasm32-unknown-unknown
- name: Build
shell: bash
run: |
cargo build --release --all-targets
env:
RUST_BACKTRACE: 1
cargo-tests:
runs-on: ${{ matrix.os }}
needs: cargo-build
strategy:
matrix:
os: [ubuntu-22.04]
steps:
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
- uses: actions/cache@6f8efc29b200d32929f49075959781ed54ec270c # v3.5.0
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}-1
- name: Install Rust
run: |
rustup update $RUST_VERSION --no-self-update
rustup default $RUST_VERSION
rustup target add wasm32-unknown-unknown
- name: Run Tests
shell: bash
run: |
cargo test --release --all-targets
env:
RUST_BACKTRACE: 1
cargo-clippy:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
- uses: actions/cache@6f8efc29b200d32929f49075959781ed54ec270c # v3.5.0
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}-1
- name: Install Rust + Clippy
run: |
rustup update $RUST_VERSION --no-self-update
rustup default $RUST_VERSION
rustup target add wasm32-unknown-unknown
rustup component add clippy
- uses: actions-rs/clippy-check@b5b5f21f4797c02da247df37026fcd0a5024aa4d # v1.0.7
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-targets -- -D warnings
rustfmt:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
- name: Install Rust + Clippy
run: |
rustup update $RUST_VERSION --no-self-update
rustup default $RUST_VERSION
- name: Install Rust + Rustfmt
run: |
rustup update $RUST_VERSION --no-self-update
rustup default $RUST_VERSION
rustup component add rustfmt
- uses: actions-rs/cargo@844f36862e911db73fe0815f00a4a2602c279505 # v1.0.3
with:
command: fmt
args: --all -- --check
shell-checks:
name: ShellCheck
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
- name: Run ShellCheck
uses: ludeeus/action-shellcheck@00b27aa7cb85167568cb48a3838b75f4265f2bca # master
env:
SHELLCHECK_OPTS: -e SC1090 -e SC2119 -e SC1091
frontent-build:
runs-on: ubuntu-22.04
strategy:
matrix:
node-version: [19.x]
steps:
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
- name: Install dfx
uses: dfinity/setup-dfx@e50c04f104ee4285ec010f10609483cf41e4d365 # main
with:
dfx-version: "0.17.0"
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@3235b876344d2a9aa001b8d1453c930bba69e610 # v3.9.1
with:
node-version: ${{ matrix.node-version }}
- name: Build frontend
run: |
dfx start --background
dfx canister create --all
dfx deps pull
dfx deps deploy
npm install -g pnpm
pnpm install
pnpm recursive run build