1
mirror of https://github.com/jakejarvis/jakejarvis.git synced 2025-04-26 05:25:25 -04:00
profile/.github/workflows/cli-test.yml
2021-11-15 13:03:08 -05:00

30 lines
463 B
YAML

name: 'CLI: Tests'
on:
push:
branches:
- main
paths:
- 'cli/**'
pull_request:
branches:
- main
paths:
- 'cli/**'
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 1
- uses: actions/setup-node@v2
with:
node-version: 16.x
- run: |
yarn install --frozen-lockfile
yarn lint
yarn build
working-directory: ./cli