Skip to content

Commit 0a4b22c

Browse files
committed
take some care of this repo :)
1 parent 005b2b2 commit 0a4b22c

File tree

9 files changed

+370
-93
lines changed

9 files changed

+370
-93
lines changed

.github/workflows/docker.yaml .github/workflows/ci.yaml

+11-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: docker
1+
name: ci
22

33
on:
44
push:
@@ -12,6 +12,16 @@ jobs:
1212
- name: Set current date as env variable
1313
id: tagname
1414
run: echo "::set-output name=timestamp::$(date +'%s')"
15+
16+
- uses: actions/checkout@v3
17+
- uses: actions/setup-node@v3
18+
with:
19+
node-version-file: ".node-version"
20+
21+
- run: npm ci
22+
- run: npm run format:validate
23+
- run: npm test
24+
1525
- name: Set up QEMU
1626
uses: docker/setup-qemu-action@v2
1727
- name: Set up Docker Buildx

.nvmrc .node-version

File renamed without changes.

Makefile

-38
This file was deleted.

elm.json

+22-24
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,26 @@
11
{
2-
"type": "application",
3-
"source-directories": [
4-
"src"
5-
],
6-
"elm-version": "0.19.1",
7-
"dependencies": {
8-
"direct": {
9-
"elm/browser": "1.0.1",
10-
"elm/core": "1.0.2",
11-
"elm/html": "1.0.0",
12-
"elm/time": "1.0.0"
13-
},
14-
"indirect": {
15-
"elm/json": "1.1.2",
16-
"elm/url": "1.0.0",
17-
"elm/virtual-dom": "1.0.2"
18-
}
2+
"type": "application",
3+
"source-directories": ["src"],
4+
"elm-version": "0.19.1",
5+
"dependencies": {
6+
"direct": {
7+
"elm/browser": "1.0.2",
8+
"elm/core": "1.0.5",
9+
"elm/html": "1.0.0",
10+
"elm/time": "1.0.0"
1911
},
20-
"test-dependencies": {
21-
"direct": {
22-
"elm-explorations/test": "1.2.2"
23-
},
24-
"indirect": {
25-
"elm/random": "1.0.0"
26-
}
12+
"indirect": {
13+
"elm/json": "1.1.3",
14+
"elm/url": "1.0.0",
15+
"elm/virtual-dom": "1.0.3"
2716
}
17+
},
18+
"test-dependencies": {
19+
"direct": {
20+
"elm-explorations/test": "1.2.2"
21+
},
22+
"indirect": {
23+
"elm/random": "1.0.0"
24+
}
25+
}
2826
}

0 commit comments

Comments
 (0)