-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci(Actions): Fixes Semantic Release creds (#1436)
* ci(Actions): Fixes Semantic Release creds * ci(Actions): Removes unnecessary workflow * ci(Actions): Separates bundle and lint
- Loading branch information
Showing
1 changed file
with
41 additions
and
10 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 |
---|---|---|
|
@@ -6,8 +6,23 @@ on: | |
pull_request: | ||
branches: [master] | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
build: | ||
bundle-and-lint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20.x | ||
- run: npm ci | ||
- run: npx --no-install microbundle | ||
- run: npx --no-install eslint src | ||
|
||
test: | ||
needs: bundle-and-lint | ||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
|
@@ -17,18 +32,34 @@ jobs: | |
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v4 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
- run: npm ci | ||
- run: npx --no-install microbundle | ||
- run: npx --no-install eslint src | ||
- run: npx --no-install jest | ||
- name: Codecov | ||
uses: codecov/[email protected] | ||
- run: npx --no-install semantic-release | ||
if: matrix.node-version == '18.x' | ||
- uses: codecov/[email protected] | ||
release: | ||
needs: test | ||
if: success() && github.ref == 'refs/heads/master' | ||
runs-on: ubuntu-latest | ||
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@v3 | ||
with: | ||
fetch-depth: 0 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 20.x | ||
- run: npm ci | ||
- run: npx --no-install microbundle | ||
- name: Verify the integrity of provenance attestations and registry signatures for installed dependencies | ||
run: npm audit signatures | ||
- name: Release | ||
env: | ||
GH_TOKEN: ${{ secrets.GH_TOKEN }} | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
run: npx semantic-release |