Skip to content

fix(web): actually inform user that they can deploy #57

fix(web): actually inform user that they can deploy

fix(web): actually inform user that they can deploy #57

Workflow file for this run

name: check
on:
pull_request:
branches: [master]
env:
CARGO_TERM_COLOR: always
jobs:
check:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v3
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
components: clippy, rustfmt
- uses: actions/setup-node@v3
with:
node-version: "16"
cache: "npm"
cache-dependency-path: "**/package-lock.json"
- run: cd qvet-web && npm ci
- run: ./scripts/check