Skip to content

chore: run prettier over all files #22

chore: run prettier over all files

chore: run prettier over all files #22

Workflow file for this run

name: Test
on:
push:
branches:
- "*"
- "/*"
- "**"
- "!master"
jobs:
Build_Test:
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:package
- run: npm run test:package
- name: Coveralls
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
run: npm run coveralls