fix(viewports): format relative viewports properly #6039
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Unit tests | |
on: [pull_request] | |
jobs: | |
unit-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 2 | |
lfs: 'true' | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 16 | |
cache: 'npm' | |
cache-dependency-path: '**/package-lock.json' | |
- name: Install | |
run: npm ci --prefer-offline --no-audit --no-fund | |
- name: Run unit tests | |
run: npx turbo run test --filter=[HEAD~1] | |
- name: Run lints | |
run: npx turbo run lint --filter=[HEAD~1] | |
- name: Run style lint | |
run: npm run test:stylelint | |
- name: Ensure no un-commited changes | |
run: npm run test:git |