Skip to content

Fixed issue where postcss plugins weren't being applied #15

Fixed issue where postcss plugins weren't being applied

Fixed issue where postcss plugins weren't being applied #15

Workflow file for this run

name: tests
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 10
strategy:
matrix:
node-version: [16.x, 18.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run build
- run: npm run test:unit
- run: npx playwright install-deps
- run: NODE_ENV=production npm run test:integration