Skip to content

chore: bump deps

chore: bump deps #4

Workflow file for this run

name: test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install berry
run: corepack enable
- uses: actions/setup-node@v3
with:
node-version: 18
- name: Install Dependices
run: yarn install
- name: Build Library
run: yarn build
- name: Run Test
run: yarn test
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}