Migrated the focus styling to style modules (#154) #203
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: Validate PRs | |
on: | |
push: | |
branches: | |
- main | |
- releases/* | |
pull_request: | |
branches: | |
- main | |
- releases/* | |
- features/* | |
jobs: | |
build_linux: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Get npm cache directory path | |
id: npm-cache-dir-path | |
run: echo '::set-output name=dir::$(npm cache dir)' | |
- name: Set up node_modules cache | |
uses: actions/cache@v3 | |
id: npm-cache | |
with: | |
path: | | |
${{ steps.npm-cache-dir-path.outputs.dir }} | |
node_modules | |
*/*/node_modules | |
key: ${{ runner.os }}-npm_cache-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-npm_cache- | |
- name: Install package dependencies | |
run: npm install --ignore-scripts | |
- name: Check for the presence of changed files inside ./change | |
run: npm run checkchange | |
- name: Validate workspaces | |
run: npm run test |