fix(postcss-syntax): return location of the makeStyles/makeResetStyles call expression if slots can't be located #1992
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: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
main: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Derive appropriate SHAs for base and head for `nx affected` commands | |
uses: nrwl/nx-set-shas@v2 | |
- uses: actions/setup-node@v4 | |
with: | |
cache: 'yarn' | |
node-version: '20' | |
- run: yarn install --immutable | |
- run: yarn check-dependencies | |
- run: yarn nx affected --target=lint --parallel --max-parallel=3 | |
- run: yarn nx affected --target=type-check --parallel --max-parallel=3 | |
- run: yarn nx affected --target=build --parallel --max-parallel=3 | |
- run: yarn nx affected --target=test --parallel --max-parallel=2 |