-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
33 additions
and
25 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,46 +10,54 @@ concurrency: | |
cancel-in-progress: true | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 20 | ||
cache: 'npm' | ||
- run: npm i | ||
# - name: lint | ||
# run: npm run lint | ||
# - run: npm run build | ||
# - name: Run test | ||
# run: npm run test:ci | ||
# - name: Upload coverage reports to Codecov | ||
# uses: codecov/[email protected] | ||
# with: | ||
# token: ${{ secrets.CODECOV_TOKEN }} | ||
# slug: rbalet/ngx-back-button | ||
# build: | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - uses: actions/checkout@v4 | ||
# - uses: actions/setup-node@v3 | ||
# with: | ||
# node-version: 20 | ||
# cache: 'npm' | ||
# - run: npm i | ||
# - name: lint | ||
# run: npm run lint | ||
# - run: npm run build | ||
# - name: Run test | ||
# run: npm run test:ci | ||
# - name: Upload coverage reports to Codecov | ||
# uses: codecov/[email protected] | ||
# with: | ||
# token: ${{ secrets.CODECOV_TOKEN }} | ||
# slug: rbalet/ngx-back-button | ||
|
||
publish: | ||
needs: build | ||
# needs: build | ||
runs-on: ubuntu-latest | ||
if: github.ref_name == 'main' | ||
permissions: | ||
contents: write # to be able to publish a GitHub release | ||
issues: write # to be able to comment on released issues | ||
pull-requests: write # to be able to comment on released pull requests | ||
id-token: write # to enable use of OIDC for npm provenance | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: ⬇️ Get latest code | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- uses: actions/setup-node@v3 | ||
|
||
- name: ⬇️ Get Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20 | ||
cache: 'npm' | ||
- run: npm i | ||
- run: npm run build | ||
- name: release | ||
|
||
- name: 📦 Install dependencies | ||
run: npm i | ||
- name: 🏗️ Build | ||
run: npm run build && npm run copy-files | ||
|
||
- name: 🚀 release | ||
run: cd dist/ngx-back-button && npx semantic-release --branches main | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|