Skip to content

all: bump version to 10.1.0 #130

all: bump version to 10.1.0

all: bump version to 10.1.0 #130

Workflow file for this run

name: Build & Tests
on:
push:
branches:
- '**'
tags-ignore:
- '**'
jobs:
build_and_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '18'
cache: 'yarn'
- name: Install dependencies
run: yarn
- name: Test
run: yarn test
- name: Lint
run: yarn lint