Fix for Python DocStrings #228
This file contains 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: Test | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
workflow_dispatch: | |
jobs: | |
lint: | |
runs-on: ubuntu-22.04 | |
timeout-minutes: 10 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: .tool-versions | |
cache: npm | |
- name: Clean install dependencies | |
run: npm ci | |
- name: Lint | |
run: npm run lint && git diff --exit-code | |
test: | |
needs: lint | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
node-version: [16.x, 18.x, 20.x] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Clean install dependencies | |
run: npm ci | |
- run: npm run test-coverage -- --reporter=verbose | |
env: | |
CI_OS: ${{ runner.os }} | |
build-and-run: | |
needs: lint | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
node-version: [16.x, 18.x, 20.x] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Clean install dependencies | |
run: npm ci | |
- run: npm run build | |
- run: node bin/repopack | |
- name: Upload build artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: repopack-output-${{ matrix.os }}-${{ matrix.node-version }}.txt | |
path: repopack-output.txt | |
security: | |
needs: lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: .tool-versions | |
- run: npm ci | |
- name: Run npm audit | |
run: npm audit |