Skip to content

Commit

Permalink
ci(refactor): cleaner steps
Browse files Browse the repository at this point in the history
  • Loading branch information
rbalet committed Nov 14, 2024
1 parent 7a001e3 commit 2009753
Showing 1 changed file with 33 additions and 25 deletions.
58 changes: 33 additions & 25 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down

0 comments on commit 2009753

Please sign in to comment.