build(deps-dev): bump @testing-library/jest-dom from 6.6.3 to 6.9.1 (… #1011
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: Build | |
| on: | |
| pull_request: | |
| push: | |
| branches: [main] | |
| jobs: | |
| build: | |
| name: Build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v2 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v1 | |
| with: | |
| node-version: 23.x | |
| - name: Install Dependencies | |
| run: npm ci --no-audit | |
| - name: License Check | |
| run: npx license-checker --production --summary --onlyAllow "MIT;Apache-2.0;BSD-3-Clause;0BSD" | |
| - name: Audit Dependencies | |
| run: npm audit --production | |
| - name: Build | |
| run: VITE_FULL_VERSION_INFO="$GITHUB_REPOSITORY $GITHUB_SHA built on $(date) $(hostname)" npm run build | |
| - name: Prettier Check | |
| run: npm run prettier:check | |
| - name: Test | |
| run: npm run test | |
| - name: Push Build | |
| run: ./push_build.sh | |
| env: | |
| GITHUB_TOKEN: ${{secrets.PUSH_TOKEN}} |