chore(deps-dev): bump postcss from 8.5.16 to 8.5.25 (#10) #7
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: Smoke Test | |
| on: | |
| push: | |
| branches: [master] | |
| workflow_dispatch: | |
| workflow_call: | |
| jobs: | |
| smoke: | |
| runs-on: ubuntu-latest | |
| name: Polylang distribution smoke test | |
| steps: | |
| - name: Check out the source code | |
| uses: actions/checkout@v4 | |
| - name: Set up PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| coverage: none | |
| php-version: "8.5" | |
| tools: composer | |
| - name: Set up Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Run smoke test | |
| run: npm run test:smoke |