Skip to content

Commit

Permalink
take some care of this repo :)
Browse files Browse the repository at this point in the history
  • Loading branch information
mstruebing committed May 27, 2022
1 parent 005b2b2 commit 0a4b22c
Show file tree
Hide file tree
Showing 9 changed files with 370 additions and 93 deletions.
12 changes: 11 additions & 1 deletion .github/workflows/docker.yaml → .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: docker
name: ci

on:
push:
Expand All @@ -12,6 +12,16 @@ jobs:
- name: Set current date as env variable
id: tagname
run: echo "::set-output name=timestamp::$(date +'%s')"

- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version-file: ".node-version"

- run: npm ci
- run: npm run format:validate
- run: npm test

- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
Expand Down
File renamed without changes.
38 changes: 0 additions & 38 deletions Makefile

This file was deleted.

46 changes: 22 additions & 24 deletions elm.json
Original file line number Diff line number Diff line change
@@ -1,28 +1,26 @@
{
"type": "application",
"source-directories": [
"src"
],
"elm-version": "0.19.1",
"dependencies": {
"direct": {
"elm/browser": "1.0.1",
"elm/core": "1.0.2",
"elm/html": "1.0.0",
"elm/time": "1.0.0"
},
"indirect": {
"elm/json": "1.1.2",
"elm/url": "1.0.0",
"elm/virtual-dom": "1.0.2"
}
"type": "application",
"source-directories": ["src"],
"elm-version": "0.19.1",
"dependencies": {
"direct": {
"elm/browser": "1.0.2",
"elm/core": "1.0.5",
"elm/html": "1.0.0",
"elm/time": "1.0.0"
},
"test-dependencies": {
"direct": {
"elm-explorations/test": "1.2.2"
},
"indirect": {
"elm/random": "1.0.0"
}
"indirect": {
"elm/json": "1.1.3",
"elm/url": "1.0.0",
"elm/virtual-dom": "1.0.3"
}
},
"test-dependencies": {
"direct": {
"elm-explorations/test": "1.2.2"
},
"indirect": {
"elm/random": "1.0.0"
}
}
}
Loading

0 comments on commit 0a4b22c

Please sign in to comment.