Skip to content

Feat: Changelog view #206

Feat: Changelog view

Feat: Changelog view #206

Workflow file for this run

name: Tests
on: pull_request
jobs:
build:
name: Tests
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
with:
ref: ${{ github.event.pull_request.head.ref }}
fetch-depth: 0
- name: Fetch origin/master
run: |
git fetch --no-tags --prune --depth=5 origin master
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 18.x
- name: Install dependencies
run: yarn
- name: Unit tests
run: yarn test