iTwin Viewer monorepo CI #905
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
# This workflow will install dependencies, check for dependency version consistency, build all packages in the repo, and run tests | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions | |
name: iTwin Viewer monorepo CI | |
on: | |
pull_request: | |
branches: [master] | |
merge_group: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [20.x] | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- run: | | |
set -e | |
echo 'Installing...' | |
node common/scripts/install-run-rush.js install | |
echo 'Checking Rush Change...' | |
node common/scripts/install-run-rush.js change -v | |
# echo 'Verifying Dependency Versions...' | |
# node common/scripts/install-run-rush.js check | |
echo 'Building...' | |
node common/scripts/install-run-rush.js rebuild | |
echo 'Linting...' | |
node common/scripts/install-run-rush.js lint | |
echo 'Testing...' | |
node common/scripts/install-run-rush.js test --verbose | |
echo 'Auditing...' | |
node common/scripts/install-run-rush.js audit |