Skip to content

chore(deps-dev): bump @semantic-release/release-notes-generator #561

chore(deps-dev): bump @semantic-release/release-notes-generator

chore(deps-dev): bump @semantic-release/release-notes-generator #561

Workflow file for this run

# This workflow will do a clean install of node dependencies, run tests across different versions of node, and build it
name: test
on:
push:
branches-ignore: [ "master", "develop" ]
pull_request:
branches: [ "master", "develop"]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js 20
uses: actions/setup-node@v3
with:
node-version: 20
cache: 'npm'
- name: Installing dependencies
run: npm ci
- name: Running linting and tests
run: npm run test
- name: Building package
run: npm run build