Skip to content

chore: bump to 0.1.1 #14

chore: bump to 0.1.1

chore: bump to 0.1.1 #14

Workflow file for this run

name: Lint and test
on:
push:
branches:
- "main"
pull_request:
branches:
- "main"
- "dev"
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: true
- uses: actions/setup-node@v2
with:
node-version: 20
registry-url: https://npm.pkg.github.com/
- name: Install yarn cli
run: corepack enable && corepack prepare [email protected] --activate
- name: Install dependencies
run: yarn
- name: Execute eslint
run: yarn lint
- name: Run test cases
run: yarn test