Skip to content

fix(note stats): destroy grid after closing settings #71

fix(note stats): destroy grid after closing settings

fix(note stats): destroy grid after closing settings #71

Workflow file for this run

name: Lint and Test Code
on:
pull_request:
branches: [master]
push:
branches: [master]
jobs:
lint_and_test_code:
runs-on: ubuntu-latest
steps:
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "20"
- uses: actions/checkout@v4
- name: Install Dependencies
run: npm install -g pnpm && pnpm install
- name: Lint
run: pnpm lint || (echo && echo "Run 'pnpm format' to fix." && exit 1)
- name: Test
run: pnpm test
- name: Upload results to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}