Skip to content

Grammar helper

Grammar helper #347

Workflow file for this run

name: test
on:
push:
branches: [master]
paths-ignore: ['docs/**']
pull_request:
paths-ignore: ['docs/**']
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Use Node Active LTS
uses: actions/setup-node@v2
with:
node-version: '18'
cache: 'npm'
- name: Install Deps
run: npm ci
- name: Build, Test & Coverage
run: |
npm run build
npm run test:types
npm run test:coverage
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}