Skip to content

Refactor commands

Refactor commands #106

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: ^16
- name: Install dependencies
run: npm install
- name: Run tests
uses: GabrielBB/xvfb-action@v1.0
with:
run: npm run test-ci
- name: Report Coveralls (Linux)
run: curl -sL https://coveralls.io/coveralls-linux.tar.gz | tar -xz && ./coveralls
env:
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}