Skip to content

Bump yaml and stylelint in /packages/larva-scss #3188

Bump yaml and stylelint in /packages/larva-scss

Bump yaml and stylelint in /packages/larva-scss #3188

Workflow file for this run

name: Node.js CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install Dependencies
run: npm ci
- run: ./node_modules/.bin/lerna bootstrap
- name: Run Tests
run: npm test
- name: Run Linters
run: npm run lint
env:
CI: true