Skip to content

feat: ignored files #65

feat: ignored files

feat: ignored files #65

Workflow file for this run

name: test
on:
push:
branches: ["main"]
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
env:
CARGO_TERM_COLOR: always
jobs:
rust_tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: cache cargo
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: lint
run: cargo clippy
- name: rust tests
run: cargo test
js_tests:
runs-on: ubuntu-latest
strategy:
matrix:
node: [18, 20]
name: node ${{ matrix.node }}
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: cache cargo
id: cache-cargo
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
key: ${{ runner.os }}-cargo-wasm-${{ hashFiles('**/Cargo.lock') }}
- name: install wasm-pack
if: steps.cache-cargo.outputs.cache-hit != 'true'
run: cargo install wasm-pack --locked
- uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af #v4.1.0
with:
node-version: ${{ matrix.node }}
cache: npm
cache-dependency-path: "**/package-lock.json"
- name: install npm packages
run: npm ci
- name: js format check
run: npm run format:check
- name: js lint
run: npm run lint
- name: js tests
run: npm run test