Skip to content

bump version

bump version #1347

Workflow file for this run

name: Check
on: push
jobs:
check:
name: Check
runs-on: ubuntu-latest
steps:
# Checkout the Repo
- uses: actions/checkout@v3
# Install Node 16
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 16
# Install dependencies
- run: yarn install --frozen-lockfile
# Run tests
- run: yarn run check