Skip to content

Updated the project with @mobilabs/es6kadoo v2.1 (Github Actions). #1

Updated the project with @mobilabs/es6kadoo v2.1 (Github Actions).

Updated the project with @mobilabs/es6kadoo v2.1 (Github Actions). #1

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 run server:api &
- run: npm test
- run: npm run check:coverage
- name: Coveralls
uses: coverallsapp/github-action@v2
# -- oOo --