File tree Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -10,23 +10,26 @@ jobs:
10
10
build :
11
11
runs-on : ubuntu-latest
12
12
steps :
13
- - uses : actions/checkout@v2
13
+ - uses : actions/checkout@v4
14
14
15
15
- uses : actions/setup-node@v3
16
16
with :
17
17
node-version : " lts/*"
18
18
19
19
- name : Setup PureScript dependencies
20
- run :
npm i --global [email protected] spago@next purs-tidy
20
+ run :
npm i --global [email protected] esbuild spago@next purs-tidy
21
21
22
- - name : Chech formatting
22
+ - name : Check formatting
23
23
run : purs-tidy check src/
24
24
25
25
- name : Build source
26
26
run : |
27
27
spago build
28
28
spago bundle --bundle-type module --bundler-args '--external:gi://*'
29
29
30
+ - name : Run tests
31
+ run : spago test
32
+
30
33
- name : Cache PureScript dependencies
31
34
uses : actions/cache@v2
32
35
with :
Original file line number Diff line number Diff line change @@ -44,7 +44,10 @@ else instance SignalCallback o (EffectFn8 o b c d e f g h Unit)
44
44
else instance SignalCallback o (EffectFn9 o b c d e f g h i Unit )
45
45
else instance SignalCallback o (EffectFn10 o b c d e f g h i j Unit )
46
46
else instance
47
- TE.Fail (TE.Text " Only EffectFnN with GObject as the first parameter can have a SignalCallback instance" ) ⇒
47
+ TE.Fail
48
+ ( TE.Text
49
+ " Only EffectFnN with GObject as the first parameter can have a SignalCallback instance"
50
+ ) ⇒
48
51
SignalCallback o other
49
52
50
53
class GObjectSignal ∷ ∀ k . k → Type → Type → Constraint
You can’t perform that action at this time.
0 commit comments