chore: bump postcss-selector-parser from 6.1.2 to 6.1.4 #59
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: PR Workflow | |
| on: | |
| pull_request: | |
| branches: [development, release-*] | |
| permissions: | |
| contents: read | |
| security-events: write | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number }} | |
| cancel-in-progress: true | |
| jobs: | |
| run_tests: | |
| uses: epam/ai-dial-ci/.github/workflows/node_pr.yml@4.11.0 | |
| secrets: inherit | |
| with: | |
| docker-build-enabled: false | |
| node-version: "24" | |
| package_check: | |
| name: package | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| - name: Prepare Node.js | |
| uses: epam/ai-dial-ci/actions/node_prepare@4.11.0 | |
| with: | |
| clean-install: true | |
| node-version: "24" | |
| - name: Typecheck | |
| run: npm run typecheck | |
| - name: Build package | |
| run: npm run build | |
| - name: Verify npm archive | |
| run: npm run publish:dry | |
| - name: Test packed package in a clean consumer | |
| run: npm run test:package |