Skip to content

Docs: Fix reference to "validateFilenames" (#40) #38

Docs: Fix reference to "validateFilenames" (#40)

Docs: Fix reference to "validateFilenames" (#40) #38

Workflow file for this run

name: Test
on:
push
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js 18
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'npm'
- run: npm ci
- run: npm run lint
test-linux:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20, 19, 18, 16]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npm run test-main
test-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js 18
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'npm'
- run: npm ci
- run: npm run test-main
test-mac-os:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js 18
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'npm'
- run: npm ci
- run: npm run test-main
test-big-mac-zips:
runs-on: ubuntu-latest
strategy:
matrix:
mac-big-size: [65534, 65535, 65536, 65537, 131072, 200000]
env:
MAC_BIG_SIZE: ${{ matrix.mac-big-size }}
steps:
- uses: actions/checkout@v3
- name: Use Node.js 18
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'npm'
- run: npm ci
- run: npm run test-mac-big
coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js 18
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'npm'
- run: npm ci
- run: npm run cover-main
- name: Send report to Coveralls
uses: coverallsapp/[email protected]
with:
github-token: ${{ secrets.GITHUB_TOKEN }}