Skip to content
This repository has been archived by the owner on May 16, 2024. It is now read-only.

add CHANGELOG title with correct syntax (#447) #1259

add CHANGELOG title with correct syntax (#447)

add CHANGELOG title with correct syntax (#447) #1259

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
jobs:
build:
name: Test - Node version ${{ matrix.node }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node: ['16', '18']
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup node
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
- name: Install yarn
run: npm i -g yarn
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "dir=$(yarn config get cacheFolder)" >> $GITHUB_OUTPUT
- name: Cache node modules
uses: actions/cache@v3
id: yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Typecheck
run: yarn typecheck
- name: Test
run: yarn test