fix(deps): update dependency tslib to v2.8.0 (#77) #238
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
- push | |
jobs: | |
format: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: .nvmrc | |
- run: npm ci | |
- run: npx prettier --check . | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: .nvmrc | |
- run: npm ci | |
- run: | | |
npx ng test --watch=false --browsers=ChromeHeadless | |
npx ng test demo --watch=false --browsers=ChromeHeadless | |
npx ng build demo | |
build: | |
runs-on: ubuntu-latest | |
needs: | |
- format | |
- test | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: .nvmrc | |
- run: npm ci | |
- run: | | |
npx ng build ngx-exhaustive-check | |
echo "# NgxExhaustiveCheck\n\nThe sources for this package are in the main [ngx-exhaustive-check](https://github.com/soc221b/ngx-exhaustive-check) repo. Please file issues and pull requests against that repo.\n\nLicense: MIT" > "dist/ngx-exhaustive-check/README.md" | |
- uses: JS-DevTools/npm-publish@v3 | |
if: github.ref_name == 'main' | |
id: publish | |
with: | |
token: ${{ secrets.NPM_TOKEN }} | |
package: ./dist/ngx-exhaustive-check | |
tag: latest | |
access: public | |
strategy: upgrade | |
- uses: anothrNick/github-tag-action@v1 | |
if: github.ref_name == 'main' && steps.publish.outputs.type | |
env: | |
CUSTOM_TAG: ${{ steps.publish.outputs.version }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
WITH_V: true | |
- uses: softprops/action-gh-release@v2 | |
if: github.ref_name == 'main' && steps.publish.outputs.type | |
with: | |
tag_name: ${{ steps.publish.outputs.version }} | |
body: "Changelog: https://github.com/soc221b/ngx-exhaustive-check/blob/${{ steps.publish.outputs.version }}/projects/ngx-exhaustive-check/CHANGELOG.md" |