Skip to content

Updated copying.md for clarity #175

Updated copying.md for clarity

Updated copying.md for clarity #175

Workflow file for this run

name: Continuous Integration
on:
push:
branches:
- main
workflow_dispatch:
workflow_call:
pull_request:
jobs:
ci:
name: CI
runs-on: ubuntu-latest
defaults:
run:
shell: bash
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Set up Node.js
uses: actions/setup-node@v6
with:
node-version: latest
- name: Install dependencies
run: npm install
- name: Formatting
run: npm run format:check
- name: License check
run: npx lice src -a
- name: Linting
run: npm run lint
- name: Build
run: npm run build
- name: Unit tests (common)
run: npx zenfs-test -pvf --common
- name: Unit tests (Zip)
run: npx zenfs-test -pvf tests/setup-zip.ts
- name: Unit tests (Iso)
run: npx zenfs-test -pvf tests/setup-iso.ts
- name: Report test coverage
run: npx zenfs-test --report