-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (30 loc) · 1.49 KB
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# Name of this action
name: Jest Automatic Testing
# Event triggers on pull request event
# For more detail visit https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#on
on: [push, pull_request]
# The jobs this action will run. You can write as many jobs as you want.
# For more detail on this section visit https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobs
jobs:
# ID of the job
run-jest-tests:
# Name of the job as it will be displayed in GitHub
name: Jest Tests
# Machine which this action will be run on. For a list of all the machines available/how to run on self hosted machine visit
# https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idruns-on
runs-on: ubuntu-latest
# Steps this job must take to complete
steps:
# Reference the main branch. For more information visit https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idstepsuses
- name: Checkout under $GITHUB_WORKSPACE
uses: actions/checkout@main
# Specify which version of Node this project is using. For more information visit.
# https://docs.github.com/en/actions/guides/building-and-testing-nodejs#specifying-the-nodejs-version
- name: Set up NodeJS
uses: actions/setup-node@v1
with:
node-version: 16
- name: Install all dependencies
run: npm install
- name: Run Jest Tests
run: npm run test