Skip to content

Clarify type signature requirement in task 1 #565

Clarify type signature requirement in task 1

Clarify type signature requirement in task 1 #565

Workflow file for this run

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