Skip to content

lint

lint #165

Workflow file for this run

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