File tree Expand file tree Collapse file tree 4 files changed +10
-12
lines changed Expand file tree Collapse file tree 4 files changed +10
-12
lines changed Original file line number Diff line number Diff line change 1
1
name : Test
2
-
3
- on : push
4
-
2
+ on : [push, pull_request]
5
3
jobs :
6
4
build :
7
5
runs-on : ${{ matrix.os }}
8
6
strategy :
9
7
fail-fast : true
10
8
matrix :
11
- node-version :
9
+ node :
12
10
- lts/*
13
- - latest
11
+ - current
14
12
os : [ubuntu-latest, macOS-latest, windows-latest]
15
13
16
14
steps :
17
- - uses : actions/checkout@v2
18
- - name : Node ${{ matrix.node-version }}
19
- uses : actions/setup-node@v2
15
+ - uses : actions/checkout@v3
16
+ - name : Node ${{ matrix.node }}
17
+ uses : actions/setup-node@v3
20
18
with :
21
- node-version : ${{ matrix.node-version }}
22
-
19
+ node-version : ${{ matrix.node }}
23
20
- run : npm run setup
24
21
- run : npm test
Original file line number Diff line number Diff line change 1
1
# pico-engine
2
2
3
3
[ ![ Node version] ( https://img.shields.io/node/v/pico-engine.svg )] ( https://nodejs.org/en/download/ )
4
+ [ ![ Build Status] ( https://github.com/Picolab/pico-engine/actions/workflows/test.yml/badge.svg?branch=master )] ( https://github.com/Picolab/pico-engine/actions/workflows/test.yml )
4
5
5
6
An implementation of the [ pico-engine] ( http://www.windley.com/archives/2016/03/rebuilding_krl.shtml ) hosted on node.js
6
7
Original file line number Diff line number Diff line change 25
25
"main" : " dist/index.js" ,
26
26
"types" : " dist/index.d.ts" ,
27
27
"engines" : {
28
- "node" : " >=8 .0.0"
28
+ "node" : " >=20 .0.0"
29
29
},
30
30
"scripts" : {
31
31
"prepublish" : " npm run build" ,
Original file line number Diff line number Diff line change 30
30
"pico-engine" : " bin/pico-engine"
31
31
},
32
32
"engines" : {
33
- "node" : " >=8 .0.0"
33
+ "node" : " >=20 .0.0"
34
34
},
35
35
"scripts" : {
36
36
"prepublish" : " npm run build" ,
You can’t perform that action at this time.
0 commit comments