Skip to content

Bump @semantic-release/release-notes-generator from 12.1.0 to 14.0.1 #418

Bump @semantic-release/release-notes-generator from 12.1.0 to 14.0.1

Bump @semantic-release/release-notes-generator from 12.1.0 to 14.0.1 #418

Workflow file for this run

# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Node.js Lint
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
lint:
runs-on: ubuntu-latest
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v4
- name: Use Node.js 18
uses: actions/setup-node@v4.0.2
with:
node-version: 18
cache: "npm"
- run: npm ci
- run: npm run build
- run: npm run lint