Skip to content

Commit

Permalink
release: update pacakge info and git workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Jordan-Hall committed Jul 26, 2021
1 parent 8a94c14 commit f34e380
Show file tree
Hide file tree
Showing 4 changed files with 4,822 additions and 19 deletions.
29 changes: 22 additions & 7 deletions .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
# For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages

name: Node.js Package

on:
Expand All @@ -12,20 +9,38 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
- uses: actions/setup-node@v2
with:
node-version: 12
node-version: 14
- run: npm ci
- run: npm test

publish-npm:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 14
registry-url: https://registry.npmjs.org/
- run: npm ci
- run: npm run prepublishOnly
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.npm_token}}

publish-gpr:
needs: build
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
- uses: actions/setup-node@v2
with:
node-version: 12
node-version: 14
registry-url: https://npm.pkg.github.com/
- run: npm ci
- run: npm run prepublishOnly
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changes to Property Use Logical

## 3.2.1 (July 26th, 2021)

- Update stylelint peer dependency to use current version or late

## 3.2.0 (February 16th, 2021)

- Added: support for `Logical height`
Expand Down
Loading

0 comments on commit f34e380

Please sign in to comment.