File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- # This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
2- # For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages
3-
41name : Node.js Package
52
63on :
129 runs-on : ubuntu-latest
1310 steps :
1411 - uses : actions/checkout@v2
15- - uses : actions/setup-node@v1
12+ - uses : actions/setup-node@v2
1613 with :
17- node-version : 12
14+ node-version : 14
1815 - run : npm ci
1916 - run : npm test
2017
18+ publish-npm :
19+ needs : build
20+ runs-on : ubuntu-latest
21+ steps :
22+ - uses : actions/checkout@v2
23+ - uses : actions/setup-node@v2
24+ with :
25+ node-version : 14
26+ registry-url : https://registry.npmjs.org/
27+ - run : npm ci
28+ - run : npm run prepublishOnly
29+ - run : npm publish
30+ env :
31+ NODE_AUTH_TOKEN : ${{secrets.npm_token}}
32+
2133 publish-gpr :
2234 needs : build
2335 runs-on : ubuntu-latest
36+ permissions :
37+ contents : read
38+ packages : write
2439 steps :
2540 - uses : actions/checkout@v2
26- - uses : actions/setup-node@v1
41+ - uses : actions/setup-node@v2
2742 with :
28- node-version : 12
43+ node-version : 14
2944 registry-url : https://npm.pkg.github.com/
3045 - run : npm ci
3146 - run : npm run prepublishOnly
Original file line number Diff line number Diff line change 11# Changes to Property Use Logical
22
3+ ## 3.2.1 (July 26th, 2021)
4+
5+ - Update stylelint peer dependency to use current version or late
6+
37## 3.2.0 (February 16th, 2021)
48
59- Added: support for ` Logical height `
You can’t perform that action at this time.
0 commit comments