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

Add note to README about repo replacements. #13

Add note to README about repo replacements.

Add note to README about repo replacements. #13

Workflow file for this run

name: CI
on: [push]
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Begin CI...
uses: actions/checkout@v2
- name: Use Node 14
uses: actions/setup-node@v1
with:
node-version: 14.x
- name: Install
run: npm install
- name: Lint
run: npm run lint
- name: Test
run: npm run test