File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 88
99jobs :
1010 build :
11- runs-on : macos-latest
12-
13- strategy :
14- matrix :
15- node-version : [18.x]
11+ runs-on : ubuntu-latest
12+ steps :
13+ - uses : actions/checkout@v4
14+ - uses : actions/setup-node@v4
15+ with :
16+ node-version : 18
17+ - run : npm ci
18+ - run : npm run build --if-present
19+ env :
20+ CI : true
1621
22+ test :
23+ runs-on : macos-latest
1724 steps :
18- - name : Checkout
19- uses : actions/checkout@v4
20- - name : Use Node.js ${{ matrix.node-version }}
21- uses : actions/setup-node@v4
25+ - uses : actions/checkout@v4
26+ - uses : actions/setup-node@v4
2227 with :
23- node-version : ${{ matrix.node-version }}
24- - name : Install regl-scatterplot
25- run : npm ci
26- - name : Build regl-scatterplot
27- run : npm run build --if-present
28- - name : Test regl-scatterplot
29- run : npm test
28+ node-version : 18
29+ - run : npm ci
30+ - run : npm test
31+ timeout-minutes : 5
Original file line number Diff line number Diff line change 77
88jobs :
99 build :
10- runs-on : macos -latest
10+ runs-on : ubuntu -latest
1111 steps :
1212 - uses : actions/checkout@v4
1313 - uses : actions/setup-node@v4
2020
2121 publish-npm :
2222 needs : build
23- runs-on : macos -latest
23+ runs-on : ubuntu -latest
2424 steps :
2525 - uses : actions/checkout@v4
2626 - uses : actions/setup-node@v4
Original file line number Diff line number Diff line change 88jobs :
99 build :
1010 name : Create Release
11- runs-on : macos -latest
11+ runs-on : ubuntu -latest
1212 steps :
1313 - name : Checkout code
1414 uses : actions/checkout@v4
Original file line number Diff line number Diff line change 1+ ## 1.8.5
2+
3+ - Fix: add ` d3-scale ` types as a dev dependency [ #153 ] ( https://github.com/flekschas/regl-scatterplot/issues/153 )
4+ - Fix: run CI workflows on Ubuntu to ensure the ` sed ` replacement call works properly [ #153 ] ( https://github.com/flekschas/regl-scatterplot/issues/153 )
5+
16## 1.8.4
27
38- Fix a regression with the point opacity introduced in [ v1.7.1] ( #1.7.1 )
You can’t perform that action at this time.
0 commit comments