Clean up mocking the rendering property on a manifest, naming convent… #73
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run Unit Tests | |
on: | |
push: | |
branches: | |
- "**" # This will run the action on push to any branch | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
env: | |
NEXT_PUBLIC_DCAPI_ENDPOINT: "https://dcapi.rdc-staging.library.northwestern.edu/api/v2" | |
NEXT_PUBLIC_DC_URL: "https://dc-next.rdc-staging.library.northwestern.edu" | |
steps: | |
- name: Cancel Previous Runs | |
uses: styfle/[email protected] | |
- name: Get files | |
uses: actions/checkout@v3 | |
- name: Setup NodeJS | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "lts/*" | |
- name: Install dependencies | |
run: npm ci | |
- name: Run tests | |
run: npm run test:ci |