1
mirror of https://github.com/jakejarvis/simple-anchor.git synced 2025-04-26 13:08:26 -04:00
2021-08-30 13:48:58 -04:00

16 lines
280 B
YAML

name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '14.x'
- run: yarn install --frozen-lockfile
- run: yarn lint
- run: yarn build