⬆️ Bump fast-uri from 3.1.2 to 3.1.4 in /setup #148
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: "test-setup-action-build" | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| jobs: | |
| test: | |
| name: Test | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: ./setup | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 | |
| - name: Setup Node.js 20.x | |
| uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4 | |
| with: | |
| node-version: "20.x" | |
| - name: Install | |
| run: npm clean-install | |
| - name: Verify | |
| run: | | |
| npm run build | |
| # Fail if "npm run build" generated new changes in dist | |
| git update-index --refresh dist/* && git diff-index --quiet HEAD dist | |
| - name: Test | |
| run: npm test |