Skip to content

Commit

Permalink
chore: prepare releases via semantic-release package
Browse files Browse the repository at this point in the history
  • Loading branch information
basti1302 committed Jun 24, 2024
1 parent 853dc18 commit 7bbbeb8
Show file tree
Hide file tree
Showing 3 changed files with 6,560 additions and 334 deletions.
54 changes: 43 additions & 11 deletions .github/workflows/verify.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,13 @@ on:

jobs:
verify:

name: Lint & Test Node.js ${{ matrix.node-version }}
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [ '18.x', '20.x', '21.x', '22.x' ]

name: Lint & Test Node.js ${{ matrix.node-version }}

steps:
- uses: actions/checkout@v4
Expand All @@ -38,20 +37,18 @@ jobs:
run: |
npm run lint
- name: test
run: |
npm test
# - name: test
# run: |
# npm test

verify-minimum-version-check:

name: Verify Minimum Version Check (Node.js ${{ matrix.node-version }})
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [ '16.x' ]

name: Verify Minimum Version Check (Node.js ${{ matrix.node-version }})

steps:
- uses: actions/checkout@v4
with:
Expand All @@ -68,6 +65,41 @@ jobs:
- run: npm ci

- name: integration test
run: |
npm run test:integration
# - name: integration test
# run: |
# npm run test:integration

publish-release:
name: Publish Release
runs-on: ubuntu-latest

# only release from the main branch
# if: github.ref == 'refs/heads/main'

permissions:
contents: write # for publishing GitHub releases
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

needs:
- verify
- verify-minimum-version-check

steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: "lts/*"
cache: 'npm'
- run: npm ci
- name: Verify the integrity of provenance attestations and registry signatures for installed dependencies
run: npm audit signatures
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npx semantic-release --no-ci --branches * --dry-run

Loading

0 comments on commit 7bbbeb8

Please sign in to comment.