chore: update linters and ci (#1065) #1032
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
name: Release | |
on: | |
push: | |
branches: | |
- main | |
permissions: {} | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
lint: | |
permissions: | |
# we must pass all the required permissions of the callee workflow | |
contents: read | |
actions: read | |
uses: ./.github/workflows/lint.yml | |
unit: | |
permissions: | |
# we must pass all the required permissions of the callee workflow | |
contents: read | |
actions: read | |
uses: ./.github/workflows/unit.yml | |
e2e: | |
permissions: | |
# we must pass all the required permissions of the callee workflow | |
contents: read | |
actions: read | |
uses: ./.github/workflows/e2e.yml | |
release: | |
needs: | |
- lint | |
- unit | |
- e2e | |
runs-on: ubuntu-24.04 | |
# set a longer timeout because commenting on pull requests can take a while | |
timeout-minutes: 30 | |
permissions: | |
contents: write # for GitHub Release | |
issues: write # for commenting on issues | |
pull-requests: write # for commenting on pull requests | |
id-token: write # for npm provenance | |
steps: | |
- name: Checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
with: | |
persist-credentials: false | |
- name: Install mise | |
uses: jdx/mise-action@5083fe46898c414b2475087cc79da59e7da859e8 # v2.1.11 | |
with: | |
version: 2025.1.0 | |
cache_save: ${{ github.ref_name == 'main' }} | |
env: | |
GITHUB_TOKEN: ${{ github.token }} | |
- name: Build | |
run: mise run build | |
- name: Release | |
run: semantic-release | |
env: | |
GITHUB_TOKEN: ${{ github.token }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
actions-timeline: | |
needs: | |
- release | |
if: ${{ !cancelled() }} | |
runs-on: ubuntu-24.04 | |
timeout-minutes: 5 | |
permissions: | |
actions: read | |
steps: | |
- name: actions-timeline | |
# cspell:ignore kesin | |
uses: Kesin11/actions-timeline@3046833d9aacfd7745c5264b7f3af851c3e2a619 # v2.2.1 |