Skip to content

build(deps-dev): bump semantic-release from 23.1.1 to 24.2.1 #484

build(deps-dev): bump semantic-release from 23.1.1 to 24.2.1

build(deps-dev): bump semantic-release from 23.1.1 to 24.2.1 #484

Workflow file for this run

name: 'Build & Test'
env:
HUSKY: 0
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
pull_request: null
jobs:
format:
name: Format
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set Node.js 22.x
uses: actions/setup-node@v4
with:
node-version: 22.x
cache: 'npm'
- name: Install
run: |
npm ci
- name: Format
run: |
npm run format
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set Node.js 22.x
uses: actions/setup-node@v4
with:
node-version: 22.x
cache: 'npm'
- name: Install
run: |
npm ci
- name: Lint
run: |
npm run lint
build_and_test:
uses: ./.github/workflows/build-and-test.yml