Skip to content

Tool to update duplicate printings from an updated set. #487

Tool to update duplicate printings from an updated set.

Tool to update duplicate printings from an updated set. #487

Workflow file for this run

name: CI
# This action works with pull requests and pushes
on:
pull_request:
branches:
- main
env:
# We do not need Husky hooks installed for this workflow.
HUSKY: 0
jobs:
format_and_lint_and_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: "18.x"
- name: Install dependencies
run: npm install
- name: Format Check
run: npm run format-check
- name: Lint
run: npm run lint
- name: Test
run: npm run test