Skip to content

Commit

Permalink
autograder
Browse files Browse the repository at this point in the history
  • Loading branch information
jwoolbright23 committed Jul 24, 2023
1 parent 050287d commit eefe14d
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/autograding.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: autograding

on: [push]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
cache: 'npm'

- name: Install package dependencies
run: npm install

- name: Create test build
run: npm run build --if-present

- name: Execute test cases
run: npm test

0 comments on commit eefe14d

Please sign in to comment.