Skip to content

Use Ubicloud runners #46

Use Ubicloud runners

Use Ubicloud runners #46

Workflow file for this run

name: Node.js CI
on: push
jobs:
ci:
runs-on: ubuntu-latest
defaults:
run:
working-directory: packages/umbreld
strategy:
fail-fast: false
matrix:
task:
- format:check
# - lint
- typecheck
# - test:unit -- --coverage
# - test:integration -- --coverage
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- run: npm clean-install
- run: npm run ${{ matrix.task }}