Skip to content

Change Lunar to be part of bankgirosystemet (#18) #55

Change Lunar to be part of bankgirosystemet (#18)

Change Lunar to be part of bankgirosystemet (#18) #55

Workflow file for this run

name: CI
on:
push:
branches:
- "main"
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- name: Cache node_modules
id: cache-node_modules
uses: actions/cache@v3
with:
path: node_modules
key: node_modules-${{ hashFiles('package.json', 'package-lock.json') }}
- name: Cache ~/.elm
uses: actions/cache@v3
with:
path: ~/.elm
key: elm-${{ hashFiles('elm.json') }}
- name: npm ci
if: steps.cache-node_modules.outputs.cache-hit != 'true'
env:
NO_ELM_TOOLING_INSTALL: 1
run: npm ci
- run: npx elm-tooling install
- run: npx elm make
- run: npx elm-test
- run: npx elm-format --validate .