Skip to content

fix: Added manual workflow option for test script #96

fix: Added manual workflow option for test script

fix: Added manual workflow option for test script #96

Workflow file for this run

name: CICD
on:
- push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20.x
cache: npm
- run: npm ci
- run: npm run lint
- run: npm test
- run: npm run build
- uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}