Skip to content

Merge pull request #170 from JohnAlbin/pass-options-to-plugins #9

Merge pull request #170 from JohnAlbin/pass-options-to-plugins

Merge pull request #170 from JohnAlbin/pass-options-to-plugins #9

Workflow file for this run

name: Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
npm-test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['18', '20']
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: |
npm install
npm test
- uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}