Skip to content

Commit

Permalink
GitHub action
Browse files Browse the repository at this point in the history
Despite the suck...
  • Loading branch information
tasuki committed May 22, 2024
1 parent 04e5e9c commit a9fecf8
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: CI

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
ci:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
- run: npm install -g elm@latest-0.19.1 elm-test
- run: elm make
- run: elm-test

0 comments on commit a9fecf8

Please sign in to comment.