Skip to content

Released 1.0.6.

Released 1.0.6. #2

Workflow file for this run

# This workflow will run tests using node.
name: CI pipeline
on:
push:
branches: [ master, main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- run: npm install
- run: npm run build:dev
- run: npm test
- run: npm run check:coverage
- name: Coveralls
uses: coverallsapp/github-action@v2
# -- oOo --