chore(deps-dev)(deps-dev): bump @tailwindcss/postcss from 4.3.1 to 4.3.3 #24
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: Contract Tests | |
| on: | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| contract-tests: | |
| name: Contract tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| cache: npm | |
| - run: npm ci | |
| - run: npm install --save-dev @stoplight/prism-cli | |
| - name: Run contract tests | |
| run: | | |
| npx prism mock openapi.json --port 4010 & | |
| sleep 5 | |
| npm run test:contract |