Skip to content

Bump postcss from 8.4.26 to 8.4.31 #565

Bump postcss from 8.4.26 to 8.4.31

Bump postcss from 8.4.26 to 8.4.31 #565

Workflow file for this run

name: Tests
on: [push, pull_request]
env:
CI: true
jobs:
test:
name: Node ${{ matrix.node }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
node: [14, 16]
os: [ubuntu-latest]
steps:
- name: Clone repository
uses: actions/checkout@v2
- name: Set Node.js version
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- name: Install npm dependencies
run: npm ci
- name: Run lint
run: npm run lint
- name: Run tests
run: npm run coverage