Skip to content

Color Module - First Draft #146

Color Module - First Draft

Color Module - First Draft #146

Workflow file for this run

name: Pull request CI
on: [pull_request]
env:
PUPPETEER_SKIP_CHROMIUM_DOWNLOAD: 1
PUPPETEER_EXECUTABLE_PATH: /usr/bin/google-chrome
# See https://github.com/w3c/respec/pull/3306
LC_ALL: en_US.UTF-8
FORCE_COLOR: 1
jobs:
lint:
name: Check linting issues
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- uses: actions/setup-node@v3
with: { node-version: 16, cache: npm }
- run: npm ci
- run: npm run lint