Skip to content

Bump tailwindcss from 3.4.16 to 3.4.17 #294

Bump tailwindcss from 3.4.16 to 3.4.17

Bump tailwindcss from 3.4.16 to 3.4.17 #294

Workflow file for this run

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/[email protected]
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"