Skip to content

comment

comment #107

Workflow file for this run

name: CI Tutorial
on:
push:
branches:
- main
pull_request:
branches:
- deploy
jobs:
"run-jest-tests":
runs-on: self-hosted
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Install Dependencies
run: npm install
- name: Run Tests
run: npm run test