Skip to content

Support external stylesheets #207

Support external stylesheets

Support external stylesheets #207

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version-file: .node-version
- run: npm ci
- run: npm run coverage-ci
- uses: codecov/codecov-action@v3
with:
files: coverage/lcov.info
format:
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version-file: .node-version
- run: npm ci
- run: npm run check-format
strategy:
matrix:
os:
- macOS-latest
- ubuntu-latest
- windows-latest
lint:
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version-file: .node-version
- run: npm ci
- run: npm run lint
strategy:
matrix:
os:
- macOS-latest
- ubuntu-latest
- windows-latest
package:
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version-file: .node-version
- run: npm ci
- run: npm run package
strategy:
matrix:
os:
- macOS-latest
- ubuntu-latest
- windows-latest
test:
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version-file: .node-version
- run: npm ci
- run: npm test
strategy:
matrix:
os:
- macOS-latest
- ubuntu-latest
- windows-latest
pull-request-check:
needs:
- format
- lint
- package
- test
runs-on: ubuntu-latest
steps:
- run: echo 'OK.'