Skip to content

Support inverted media queries #66

Support inverted media queries

Support inverted media queries #66

Workflow file for this run

name: Test
on:
# Trigger the workflow on push or pull request,
# but only for the main branch
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install deps
run: npm ci
- name: Code style
run: npm test
- name: Jest tests
run: npm run jest