mirror of
https://github.com/jakejarvis/dark-mode.git
synced 2025-04-25 17:35:21 -04:00
19 lines
286 B
YAML
19 lines
286 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
|
|
jobs:
|
|
lint:
|
|
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
|