updated itwinui-react version & breaking changes #432
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: | |
workflow_dispatch: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
build_test: | |
name: Build and test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node 18.X | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18.x | |
cache: yarn | |
- run: yarn install --frozen-lockfile | |
- run: yarn npm audit | |
- run: yarn lint | |
- run: yarn lint:copyright ${{ github.workspace }}/*/**.{js,ts,tsx,scss,html} | |
- run: yarn build | |
- run: yarn build:demo | |
- run: yarn test:ci | |
- name: Upload tests artifacts | |
uses: actions/upload-artifact@v2 | |
if: failure() | |
with: | |
name: tests-results | |
path: | | |
demo/cypress-visual-report/ | |
demo/cypress-visual-screenshots/ | |
deploy: | |
name: Deploy demo HTML page | |
if: github.ref == 'refs/heads/main' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node 18.X | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18.x | |
cache: yarn | |
- run: yarn install --frozen-lockfile | |
- run: yarn build | |
- run: yarn build:demo | |
- name: Host Demo on GitHub Pages | |
uses: JamesIves/[email protected] | |
with: | |
branch: gh-pages | |
folder: ${{ github.workspace }}/demo/dist | |
git-config-name: github-actions[bot] | |
git-config-email: github-actions[bot]@users.noreply.github.com |