Prepare documentation site for pointing to fast.design instead of the default github pages URL #4529
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: Validate PRs | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- master | |
- releases/* | |
pull_request: | |
branches: | |
- master | |
- releases/* | |
- features/* | |
jobs: | |
build_linux: | |
runs-on: ubuntu-latest | |
env: | |
PLAYWRIGHT_BROWSERS_PATH: 0 | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Cache multiple paths | |
uses: actions/cache@v2 | |
env: | |
cache-name: cache-node-modules | |
with: | |
path: ~/.npm | |
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-build-${{ env.cache-name }}- | |
${{ runner.os }}-build- | |
${{ runner.os }}- | |
- name: Install package dependencies | |
run: npm ci | |
- name: Check for the presence of changed files inside ./change | |
run: npm run checkchange | |
- name: Testing Prettier format | |
run: npm run format:check | |
- name: Build workspaces | |
run: npm run build | |
- name: Install playwright dependencies and browsers | |
run: | | |
npx playwright install | |
- name: Testing unit tests | |
run: npm run test | |
- name: Testing final validation | |
run: npm run test:validation |