Fix lockfile #269
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: CI | |
on: [push] | |
env: | |
CARGO_TERM_COLOR: always | |
FORCE_COLOR: true | |
ROCKET_TEST_DB: ${{ secrets.ROCKET_TEST_DB }} | |
jobs: | |
rust-build: | |
name: Rust build and lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Install nightly | |
uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: nightly | |
override: true | |
components: clippy | |
- name: Build | |
uses: actions-rs/cargo@v1 | |
with: | |
command: build | |
- name: Lint | |
uses: actions-rs/cargo@v1 | |
with: | |
command: clippy | |
args: -- --deny warnings | |
rust-test: | |
name: Rust test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Setup test database | |
run: docker compose up --detach | |
- name: Test | |
uses: actions-rs/cargo@v1 | |
env: | |
ROCKET_TEST_DB: postgres://postgres:docker@localhost:5432 | |
with: | |
command: test | |
js: | |
name: JS | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: web | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Generate contracts | |
uses: actions-rs/cargo@v1 | |
with: | |
command: run | |
args: --bin gen_contracts | |
- name: Install NPM | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18.3 | |
- run: npm --version | |
- name: Install | |
run: npm ci --include=dev | |
- name: Build | |
run: npm run build | |
- name: Test | |
run: npm run test | |
- name: Lint | |
run: npm run lint |