Skip to content

Bump actions/checkout from 5.0.0 to 6.0.0 #1061

Bump actions/checkout from 5.0.0 to 6.0.0

Bump actions/checkout from 5.0.0 to 6.0.0 #1061

Workflow file for this run

name: elm / pr
on:
pull_request:
push:
branches: [main]
jobs:
ci:
runs-on: ubuntu-24.04
strategy:
matrix:
node-version: [12.x, 14.x, 16.x]
steps:
- name: Checkout PR
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444
with:
node-version: ${{ matrix.node-version }}
- name: Install elm + tools and cache the ELM_HOME directory
uses: mpizenberg/elm-tooling-action@289c229bc9d81512230e8b827df4c78398e08113
with:
cache-key: elm-${{ matrix.node-version }}-${{ hashFiles('elm-tooling.json', 'template/elm.json') }}
cache-restore-key: elm-${{ matrix.node-version }}
- name: Check that everything is alright
run: bin/build.sh
elm-test-runner:
runs-on: ubuntu-24.04
steps:
- name: Checkout exercism/elm
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3
- name: Run tests for all exercises
run: bin/run-all-exercises-in-docker.sh
elm-analyzer:
runs-on: ubuntu-24.04
steps:
- name: Checkout exercism/elm
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3
- name: Run tests for all exercises
run: bin/analyze-all-exercises-in-docker.sh