Skip to content

update CHANGELOG.md #124

update CHANGELOG.md

update CHANGELOG.md #124

Workflow file for this run

name: Lint and Test
on:
push:
branches: [ "main", "*/version/*" ]
pull_request:
jobs:
lint-test:
name: Lint & Test
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
node-version: [ 20.x, 18.x ]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- run: yarn workspaces foreach --all install
- run: yarn lint
- run: yarn build
- run: yarn test