Skip to content

Merge branch 'main' of https://github.com/RayJune/eloquent-leetcode-b… #15

Merge branch 'main' of https://github.com/RayJune/eloquent-leetcode-b…

Merge branch 'main' of https://github.com/RayJune/eloquent-leetcode-b… #15

Workflow file for this run

# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Jest Test CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Use Node.js 16
uses: actions/setup-node@v3
with:
node-version: 16
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run the tests
run: npm test