Skip to content

Sync the two-fer exercise's docs with the latest data. (#675) #805

Sync the two-fer exercise's docs with the latest data. (#675)

Sync the two-fer exercise's docs with the latest data. (#675) #805

Workflow file for this run

name: elm / pr
on:
pull_request:
push:
branches: [main]
jobs:
ci:
runs-on: ubuntu-22.04
strategy:
matrix:
node-version: [12.x, 14.x, 16.x]
steps:
- name: Checkout PR
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8
with:
node-version: ${{ matrix.node-version }}
- name: Install elm + tools and cache the ELM_HOME directory
uses: mpizenberg/elm-tooling-action@809c844d494c95906eb8cafcfa0060b29193709d
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-22.04
steps:
- name: Checkout exercism/elm
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633
- name: Run tests for all exercises
run: bin/run-all-exercises-in-docker.sh
elm-analyzer:
runs-on: ubuntu-22.04
steps:
- name: Checkout exercism/elm
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633
- name: Run tests for all exercises
run: bin/analyze-all-exercises-in-docker.sh