Port Sent page to use React Table v7 #3164
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
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions | |
name: Node.js CI | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18, 20] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'npm' | |
- name: Install dependencies | |
# `npm ci` is like `npm install` but meant for automated environments | |
# where you want to do a clean install or die trying. | |
# See https://docs.npmjs.com/cli/v11/commands/npm-ci | |
run: npm ci | |
- name: Check for formatting and linting errors | |
run: npm run check | |
- name: Run build | |
run: npm run build | |
env: | |
NODE_OPTIONS: --max-old-space-size=4096 | |
- name: Run the tests | |
run: npm run test -- --coverage |