Skip to content

Fix example

Fix example #152

Workflow file for this run

name: Test
on:
push:
jobs:
test:
name: Sass
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 'lts/*'
cache: yarn
- run: yarn install --frozen-lockfile
- run: yarn test
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 'lts/*'
cache: yarn
- run: yarn install --frozen-lockfile
- run: yarn lint:ci