mirror of
https://github.com/jakejarvis/dark-mode.git
synced 2025-04-27 05:28:27 -04:00
20 lines
322 B
YAML
20 lines
322 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: 16.x
|
|
- run: yarn install --frozen-lockfile
|
|
- run: yarn lint
|
|
- run: yarn build
|