Skip to content

Commit

Permalink
Merge pull request #45 from javierbrea/release
Browse files Browse the repository at this point in the history
Release v1.2.0
  • Loading branch information
javierbrea authored Jan 27, 2022
2 parents 7beb962 + 94927d6 commit 101a4b6
Show file tree
Hide file tree
Showing 6 changed files with 8,819 additions and 666 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node: ["12.22.1", "14.16.1"]
node: ["12.22.1", "14.16.1", "16.13.0", "17.0.1"]
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down Expand Up @@ -88,7 +88,7 @@ jobs:
- name: Download test results
uses: actions/download-artifact@v2
with:
name: coverage-14.16.1
name: coverage-16.13.0
path: coverage
- name: Coveralls
uses: coverallsapp/github-action@master
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish-to-github-registry.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: npm ci
# Setup .npmrc file to publish to GitHub Packages
- uses: actions/setup-node@v2
with:
node-version: '14.x'
node-version: '16.x'
registry-url: 'https://npm.pkg.github.com'
# Defaults to the user or organization that owns the workflow file
scope: '@javierbrea'
Expand All @@ -20,6 +19,7 @@ jobs:
filename: './package.json'
key: 'name'
value: '@javierbrea/node-sass-alias-importer'
- run: npm ci
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/publish-to-npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '14.x'
node-version: '16.x'
registry-url: 'https://registry.npmjs.org/'
- run: npm ci
- run: npm publish
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
### Removed
### BREAKING CHANGES

## [1.2.0] - 2022-01-27

### Changed
- chore(#44): Add peerDependenciesMeta to make node-sass optional
- chore(deps): Update devDependencies
- chore: Use Node 16 in workflows

## [1.1.0] - 2021-12-06

### Added
Expand Down
Loading

0 comments on commit 101a4b6

Please sign in to comment.