chore(deps): update dependency @types/node to v25 - autoclosed #821
Workflow file for this run
This file contains hidden or 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" | |
| permissions: | |
| contents: read | |
| on: | |
| pull_request: | |
| branches: | |
| - "main" | |
| push: | |
| branches: | |
| - "main" | |
| # This allows a subsequently queued workflow run to interrupt previous runs | |
| concurrency: | |
| group: "ci @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}" | |
| cancel-in-progress: true | |
| jobs: | |
| skip-check: | |
| if: ${{ !contains(github.event.pull_request.title, 'chore(release):') }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - run: echo "run only on non-release commits" | |
| validate: | |
| needs: [skip-check] | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 # otherwise, ci will failed to push refs | |
| - name: Check for @qlik-trial strings | |
| run: | | |
| if grep -r "@qlik-trial" --exclude-dir=node_modules --exclude-dir=.git --exclude-dir=.github --exclude-dir=.husky --exclude-dir=.turbo; then | |
| echo "❌ Error: Found '@qlik-trial' in the codebase." | |
| echo "Please remove these references before pushing." | |
| exit 1 | |
| fi | |
| echo "✅ No '@qlik-trial' strings found." | |
| - name: Use Node.js | |
| uses: ./.github/actions/setup-node | |
| with: | |
| npm-token: ${{ secrets.NPM_CI_TOKEN }} | |
| - run: pnpm install | |
| - run: pnpm format:check | |
| - run: pnpm build | |
| - run: pnpm check-types | |
| # - run: pnpm lint | |
| # - run: pnpm test | |
| # - name: Run Chromatic | |
| # uses: chromaui/action@latest | |
| # with: | |
| # projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }} | |
| # workingDir: packages/sprout-react | |
| # autoAcceptChanges: "main" # 👈 Option to accept all changes on main |