Skip to content

Tune edit grades table for smaller screens #707 #72

Tune edit grades table for smaller screens #707

Tune edit grades table for smaller screens #707 #72

Workflow file for this run

name: Lint & Test
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4
- name: Read .nvmrc
run: echo "NODE_VERSION=$(cat .nvmrc)" >> $GITHUB_OUTPUT
id: nvm
- name: Use Node.js ${{ steps.nvm.outputs.NODE_VERSION }}
uses: actions/setup-node@v4
with:
node-version: ${{ steps.nvm.outputs.NODE_VERSION }}
cache: npm
- name: Lint
run: |
npm install
npm run lint
- name: Test
run: npm run test:headless