Skip to content

chore: bump semantic-release from 23.1.1 to 24.0.0 #772

chore: bump semantic-release from 23.1.1 to 24.0.0

chore: bump semantic-release from 23.1.1 to 24.0.0 #772

Workflow file for this run

name: NodeJS
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
timeout-minutes: 1
steps:
- uses: actions/checkout@v4
- name: Use Node.js 20
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: npm
- run: |
npm ci
npm run lint
test:
name: Test
runs-on: ubuntu-latest
timeout-minutes: 3
steps:
- uses: actions/checkout@v4
- name: Use Node.js 20
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: npm
- run: |
npm ci
npm test
build:
name: Build
runs-on: ubuntu-latest
timeout-minutes: 3
steps:
- uses: actions/checkout@v4
- name: Use Node.js 20
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: npm
- run: |
npm ci
npm run build