Skip to content

list packages

list packages #1750

Workflow file for this run

# name: lint
# on:
# pull_request:
# push:
# branches:
# - master
# jobs:
# linter:
# runs-on: ubuntu-latest
# timeout-minutes: 10
# steps:
# - name: Checkout repo
# uses: actions/checkout@v2
# with:
# fetch-depth: 0
# - name: Set up Node.js
# uses: actions/setup-node@v3
# with:
# node-version: '18'
# cache: 'yarn'
# - name: Install rust
# uses: dtolnay/rust-toolchain@1.76.0
# - uses: jetli/wasm-pack-action@v0.4.0
# with:
# # Optional version of wasm-pack to install(eg. 'v0.9.1', 'latest')
# version: 'latest'
# - name: Install project dependencies
# run: yarn install
# - name: Lint
# run: yarn nx format:check --all