build(deps-dev): bump semantic-release from 22.0.12 to 23.0.2 #9
Workflow file for this run
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: CI | |
on: | |
push: | |
branches: [develop, master, next, beta, alpha] | |
pull_request: | |
branches: [develop, master, next, beta, alpha] | |
permissions: | |
packages: write | |
contents: write | |
issues: write | |
pull-requests: write | |
env: | |
PRIMARY_NODE_VERSION: 18 | |
jobs: | |
install: | |
name: Checkout and Install | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install | |
uses: ./.github/actions/install | |
with: | |
node-version: ${{ env.PRIMARY_NODE_VERSION }} | |
lint: | |
name: Lint | |
needs: [build] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install | |
uses: ./.github/actions/install | |
with: | |
node-version: ${{ env.PRIMARY_NODE_VERSION }} | |
- name: Build | |
uses: ./.github/actions/build | |
- name: Lint | |
run: | | |
npm run lint | |
build: | |
name: Build | |
needs: [install] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install | |
uses: ./.github/actions/install | |
with: | |
node-version: ${{ env.PRIMARY_NODE_VERSION }} | |
- name: Build | |
uses: ./.github/actions/build | |
tests: | |
name: Test | |
needs: [build] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install | |
uses: ./.github/actions/install | |
with: | |
node-version: ${{ env.PRIMARY_NODE_VERSION }} | |
- name: Build | |
uses: ./.github/actions/build | |
- name: Run tests | |
run: | | |
npm run test | |
release: | |
name: Release | |
needs: [lint, tests] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install | |
uses: ./.github/actions/install | |
with: | |
node-version: ${{ env.PRIMARY_NODE_VERSION }} | |
- name: Build | |
uses: ./.github/actions/build | |
#- name: Release | |
#env: | |
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
# | |
# run: npx semantic-release | |
coverage: | |
name: Coverage | |
needs: [release] | |
runs-on: ubuntu-latest | |
if: ${{ github.ref_name == 'master' }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install | |
uses: ./.github/actions/install | |
with: | |
node-version: ${{ env.PRIMARY_NODE_VERSION }} | |
- name: Build | |
uses: ./.github/actions/build | |
- name: Coverage | |
run: | | |
npm run test:coverage | |
#- name: Upload report | |
# uses: codecov/[email protected] | |
# with: | |
# token: ${{ secrets.codecov }} | |
# directory: ./coverage/ |