chore: Bump @doist/reactist
to v26.0.0
#101
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: React CI | |
on: | |
pull_request: | |
paths: | |
- 'packages/ui-extensions-react/**' | |
- 'package.json' | |
- 'package-lock.json' | |
jobs: | |
ci-react: | |
runs-on: ubuntu-latest | |
timeout-minutes: 60 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Configure doist package repository | |
uses: actions/setup-node@v3 | |
with: | |
node-version-file: '.nvmrc' | |
- name: Bootstrap | |
run: npm run bootstrap-ci:react | |
env: | |
NODE_AUTH_TOKEN: ${{secrets.GH_PACKAGES_TOKEN}} | |
- name: Integrity Check | |
run: npm run integrity-check | |
working-directory: packages/ui-extensions-react |