mirror of
https://github.com/jakejarvis/stitches-normalize.git
synced 2025-04-26 13:08:28 -04:00
20 lines
304 B
YAML
20 lines
304 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: 16
|
|
- run: yarn install --frozen-lockfile
|
|
- run: yarn test
|
|
- run: yarn build
|