build(dev-deps): update dependency semantic-release to v24 #186
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: Check | |
on: push | |
jobs: | |
lint: | |
name: Lint | |
if: ${{ !startsWith(github.ref, 'refs/heads/ci-release-v') }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup | |
uses: actions/setup-node@v3 | |
with: | |
cache: yarn | |
node-version: 20 | |
- name: Install | |
run: yarn | |
- name: Lint code | |
run: yarn test:lint | |
type: | |
name: Type | |
if: ${{ !startsWith(github.ref, 'refs/heads/ci-release-v') }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup | |
uses: actions/setup-node@v3 | |
with: | |
cache: yarn | |
node-version: 20 | |
- name: Install | |
run: yarn | |
- name: Type | |
run: yarn test:type | |
# test: | |
# name: Test | |
# if: ${{ !startsWith(github.head_ref, 'ci-release-v') }} | |
# runs-on: ubuntu-latest | |
# steps: | |
# - name: Checkout | |
# uses: actions/checkout@v3 | |
# - name: Setup Node.js | |
# uses: actions/setup-node@v3 | |
# with: | |
# cache: yarn | |
# node-version: 20 | |
# - name: Install | |
# run: yarn | |
# - name: Test | |
# run: yarn test:unit |