Skip to content

Updating API endpoint #9

Updating API endpoint

Updating API endpoint #9

Workflow file for this run

name: CI
on:
workflow_dispatch:
pull_request:
branches: ["main"]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: "16.19.x"
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run tests
run: yarn test