Skip to content

Commit 0053d3d

Browse files
committed
Initial commit
0 parents  commit 0053d3d

26 files changed

+6973
-0
lines changed

.github/workflows/build.yml

+65
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
name: build
2+
3+
on:
4+
push:
5+
branches: [master]
6+
pull_request:
7+
branches: [master]
8+
9+
jobs:
10+
build:
11+
runs-on: ${{ matrix.os }}
12+
container: ${{ matrix.image }}
13+
strategy:
14+
matrix:
15+
include:
16+
- os: ubuntu-latest
17+
- os: macOS-latest
18+
- os: windows-latest
19+
steps:
20+
# We set LF endings so that the Windows environment is consistent with the rest
21+
# See here for context: https://github.com/actions/checkout/issues/135
22+
- name: Set git to use LF
23+
run: |
24+
git config --global core.autocrlf false
25+
git config --global core.eol lf
26+
git config --global core.longpaths true
27+
28+
- uses: actions/checkout@v4
29+
30+
- name: Setup node and npm
31+
uses: actions/setup-node@v4
32+
with:
33+
node-version: 22
34+
35+
- name: Cache NPM dependencies
36+
uses: actions/cache@v4
37+
env:
38+
cache-name: cache-node-modules
39+
with:
40+
path: ~/.npm
41+
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package.json') }}
42+
restore-keys: |
43+
${{ runner.os }}-build-${{ env.cache-name }}-
44+
${{ runner.os }}-build-
45+
${{ runner.os }}-
46+
47+
- name: Cache PureScript dependencies
48+
uses: actions/cache@v4
49+
with:
50+
key: ${{ runner.os }}-spago-${{ hashFiles('**/spago.yaml') }}
51+
path: |
52+
.spago
53+
output
54+
55+
- name: Install NPM dependencies
56+
run: npm ci
57+
58+
- name: Install PureScript dependencies
59+
run: npx spago install
60+
61+
- name: Build the project
62+
run: npx spago build
63+
64+
- name: Run tests
65+
run: npx spago test

.gitignore

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
2+
bower_components/
3+
node_modules/
4+
.pulp-cache/
5+
output/
6+
output-es/
7+
generated-docs/
8+
.psc-package/
9+
.spec-results
10+
.psc*
11+
.purs*
12+
.psa*
13+
.spago

0 commit comments

Comments
 (0)