Skip to content
This repository was archived by the owner on Feb 19, 2025. It is now read-only.

🤷

🤷 #55

Workflow file for this run

name: Test
on: ["push", "pull_request"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 18.x
- name: Install Dependencies
run: npm ci
- name: Test
run: npm run test
- name: Lint
run: npm run lint
- name: Report Coverage
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}