fix(ci): publish npm package with trusted OIDC #18
This file contains hidden or 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: Test Workflows | |
| on: | |
| push: | |
| paths: [".github/**"] | |
| branches-ignore: ["release/*", "nightly"] | |
| tags-ignore: ["v*"] | |
| pull_request: | |
| paths: [".github/**"] | |
| branches-ignore: ["release/*", "nightly"] | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: test-workflows-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| lint: | |
| name: Validate Actions and security policy | |
| runs-on: ubuntu-24.04 | |
| timeout-minutes: 10 | |
| steps: | |
| - name: Checkout Code | |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| with: | |
| persist-credentials: false | |
| - name: Setup Go | |
| uses: actions/setup-go@b7ad1dad31e06c5925ef5d2fc7ad053ef454303e # v7.0.0 | |
| with: | |
| go-version-file: go.mod | |
| cache: false | |
| - name: Validate workflow syntax | |
| run: go run github.com/rhysd/actionlint/cmd/actionlint@v1.7.12 -color | |
| - name: Install zizmor | |
| run: | | |
| python3 -m venv "$RUNNER_TEMP/zizmor" | |
| "$RUNNER_TEMP/zizmor/bin/pip" install --disable-pip-version-check zizmor==1.28.0 | |
| - name: Audit workflow security | |
| run: | | |
| "$RUNNER_TEMP/zizmor/bin/zizmor" --format github .github |