Skip to content

Test Latest Commit #65468

Test Latest Commit

Test Latest Commit #65468

Workflow file for this run

name: Test Latest Commit
on:
push:
pull_request:
schedule:
- cron: '*/30 * * * *'
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout Commit
uses: actions/checkout@v3
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version-file: .nvmrc
cache: npm
- name: Install Dependencies
run: npm ci
- name: Run Tests
run: npm test