Updated copying.md for clarity #174
Workflow file for this run
This file contains hidden or 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: 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 |