chore: update spec test iris #314
Workflow file for this run
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: CI | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
node-version: | |
- 12.x | |
- 14.x | |
- 16.x | |
- 18.x | |
- 20.x | |
steps: | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- uses: actions/checkout@v2 | |
- run: npm ci --ignore-scripts | |
- run: npm run build | |
- run: npm run lint | |
- run: npm run test | |
- run: npx nyc report --reporter=text-lcov > lcov.info | |
- uses: coverallsapp/github-action@master | |
with: | |
github-token: ${{ secrets.github_token }} | |
flag-name: run-${{ matrix.node-version }} | |
parallel: true | |
path-to-lcov: lcov.info | |
spec: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
node-version: | |
- 12.x | |
- 14.x | |
- 16.x | |
- 18.x | |
- 20.x | |
steps: | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- uses: actions/checkout@v2 | |
- run: npm ci | |
- run: npm run spec-turtle | |
- run: npm run spec-ntriples | |
- run: npm run spec-nquads | |
- run: npm run spec-trig | |
coveralls: | |
needs: test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Consolidate test coverage from different jobs | |
uses: coverallsapp/github-action@master | |
with: | |
github-token: ${{ secrets.github_token }} | |
parallel-finished: true | |
docs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: 14.x | |
- run: npm ci --ignore-scripts | |
- run: npm run docs | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: docs | |
path: | | |
index.html | |
docs | |
retention-days: 1 | |
gh-pages: | |
needs: | |
- test | |
- spec | |
- docs | |
runs-on: ubuntu-latest | |
if: startsWith(github.ref, 'refs/tags/v') | |
steps: | |
- uses: actions/download-artifact@v2 | |
with: | |
name: docs | |
- uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: . |