update branch policies and pipelines for pull requests on archive #4126
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: | |
push: | |
branches: | |
- archives/fast-element-1 | |
- releases/* | |
pull_request: | |
branches: | |
- archives/fast-element-1 | |
- releases/* | |
- features/* | |
jobs: | |
build_linux: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Get yarn cache directory path | |
id: yarn-cache-dir-path | |
run: echo '::set-output name=dir::$(yarn cache dir)' | |
- name: Set up node_modules cache | |
uses: actions/cache@v3 | |
id: yarn-cache | |
with: | |
path: | | |
${{ steps.yarn-cache-dir-path.outputs.dir }} | |
node_modules | |
*/*/node_modules | |
key: ${{ runner.os }}-yarn_cache-${{ hashFiles('**/yarn.lock') }} | |
restore-keys: | | |
${{ runner.os }}-yarn_cache- | |
- name: Install package dependencies | |
run: yarn install --frozen-lockfile --ignore-scripts --prefer-offline | |
- name: Check for the presence of changed files inside ./change | |
run: yarn checkchange | |
- name: Testing Prettier format | |
run: yarn format:check | |
- name: Prepare workspaces | |
run: yarn prepare | |
- name: Testing unit tests | |
run: yarn lerna run test --stream | |
- name: Collect and upload code coverage to Code Climate | |
uses: paambaati/[email protected] | |
env: | |
CC_TEST_REPORTER_ID: 08a773cb4ea5811add5a45e12873e5cd2634c005568705cc37abfd5217617a32 | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
coverageCommand: yarn lerna run coverage | |
coverageLocations: | | |
${{github.workspace}}/packages/tooling/fast-figma-plugin-msft/coverage/lcov.info:lcov | |
${{github.workspace}}/packages/utilities/fast-colors/coverage/lcov.info:lcov | |
${{github.workspace}}/packages/utilities/fast-eslint-rules/coverage/lcov.info:lcov | |
debug: false | |
- name: Testing final validation | |
run: yarn test:validation |