Bump vite from 4.4.7 to 4.4.8 #297
Workflow file for this run
This file contains 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: CI - Elm | |
on: | |
push: | |
branches: [main] | |
paths: | |
- '.github/workflows/ci-elm.yml' | |
- '.node-version' | |
- 'elm.json' | |
- 'elm-tooling.json' | |
- 'package.json' | |
- 'package-lock.json' | |
- '**/*.elm' | |
pull_request: | |
paths: | |
- '.github/workflows/ci-elm.yml' | |
- '.node-version' | |
- 'elm.json' | |
- 'elm-tooling.json' | |
- 'package.json' | |
- 'package-lock.json' | |
- '**/*.elm' | |
jobs: | |
test: | |
timeout-minutes: 15 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version-file: '.node-version' | |
cache: npm | |
- name: Install npm dependencies | |
run: npm ci --ignore-scripts | |
- name: Load elm # Workaround to avoid `node_modules/elm/bin/elm: Text file busy` | |
run: npx elm --version || true | |
- name: Test | |
run: npm run test | |
lint: | |
timeout-minutes: 15 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version-file: '.node-version' | |
cache: npm | |
- name: Install npm dependencies | |
run: npm ci --ignore-scripts | |
- name: Load elm # Workaround to avoid `node_modules/elm/bin/elm: Text file busy` | |
run: npx elm --version || true | |
- name: Format Check | |
run: npx elm-format --validate src | |
- name: Lint | |
run: npx elm-review |