mirror of
https://github.com/jakejarvis/careful-downloader.git
synced 2025-04-26 14:38:27 -04:00
20 lines
307 B
YAML
20 lines
307 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
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 test
|