Skip to content

Merge pull request #56 from ripe-tech/jc/436-filter-appliance #347

Merge pull request #56 from ripe-tech/jc/436-filter-appliance

Merge pull request #56 from ripe-tech/jc/436-filter-appliance #347

Workflow file for this run

name: Main Workflow
on: [push]
jobs:
build:
name: Build
strategy:
matrix:
node-version: [16, 18, 20]
runs-on: ubuntu-latest
container: node:${{ matrix.node-version }}
steps:
- uses: actions/checkout@v1
- run: node --version
- run: npm install
- run: npm install --only=dev
- run: npm run build
- run: npm run lint
- run: npm test
- run: npm run test-coverage
- uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}