This repository has been archived by the owner on Nov 5, 2023. It is now read-only.
feat: export all items memoized by the grid #281
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Verify PRs | |
on: | |
pull_request: | |
branches: [ main ] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
verification: | |
name: Test & Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: "package.json" | |
cache: "npm" | |
- name: Install dependencies | |
run: npm --no-update-notifier --no-fund --no-audit ci | |
- name: Lint | |
run: npm run lint | |
- name: Unit Test | |
run: npm test | |
- name: Build | |
run: npm run build |