Skip to content

Update eslint config file. #79

Update eslint config file.

Update eslint config file. #79

Workflow file for this run

---
name: CI
on: [push, pull_request, workflow_dispatch]
jobs:
build:
runs-on: ubuntu-22.04
strategy:
max-parallel: 1
matrix:
node: [ '18', '20', '22' ]
name: node ${{ matrix.node }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- run: npm install .
- run: npm link
- run: /opt/hostedtoolcache/node/$(node --version | cut -c2-)/x64/bin/bob build
- uses: coverallsapp/[email protected]
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: .bob/coverage/c8/lcov.info
- uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: .bob