Bump tailwindcss from 3.4.17 to 4.1.6 #328
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 | |
| permissions: | |
| id-token: write | |
| contents: read | |
| checks: write | |
| on: | |
| push: | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| # Setup | |
| - uses: actions/checkout@v4 | |
| - run: yarn --frozen-lockfile | |
| - name: Add elm-review, elm and elm-format to path | |
| run: yarn bin >> $GITHUB_PATH | |
| # Run elm-review | |
| - uses: sparksp/elm-review-action@v1.1.0 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| # Run elm-format | |
| - uses: sparksp/elm-format-action@v1 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| # Run elm-test | |
| - name: Generate tailwind code | |
| run: elm-tailwind-modules --dir ./gen --tailwind-config tailwind.config.js | |
| - name: Run tests | |
| run: elm-test --report junit > report.xml | |
| - name: Test report | |
| uses: mikepenz/action-junit-report@v5 | |
| if: always() | |
| with: | |
| report_paths: "report.xml" | |