Skip to content

2019 Day 20 Puzzle #262

2019 Day 20 Puzzle

2019 Day 20 Puzzle #262

Workflow file for this run

name: Unit Tests
on:
push:
branches:
- main
workflow_dispatch:
env:
CI: true
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 20
- name: Install
run: npm ci
- name: Test
run: npm run test