Skip to content

Configure manual GitHub actions #7

Configure manual GitHub actions

Configure manual GitHub actions #7

Workflow file for this run

name: tests
on:
workflow_dispatch:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
cache: 'npm'
- uses: actions/cache@v3
with:
path: ~/.elm
key: ${{ runner.os }}-elm-home-${{ hashFiles('**/elm.json') }}
- run: npm ci
- run: npm test