Skip to content

feat: enable full autograding based on rejection thresholds #30

feat: enable full autograding based on rejection thresholds

feat: enable full autograding based on rejection thresholds #30

Workflow file for this run

name: Continuous Integration
on:
pull_request:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
defaults:
run:
working-directory: .
strategy:
matrix:
node-version: [24.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v5
with:
node-version: ${{ matrix.node-version }}
- name: npm install and test
run: |
npm install
npm test
env:
CI: true