Skip to content

fix path

fix path #916

# Unit tests for COKI Open Access Dashboard REST API
name: "Workers API Unit Tests"
on: push
jobs:
workers-api-unit-test:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Environment
uses: ./.github/actions/setup-environment
with:
bucket_name: ${{ secrets.BUCKET_NAME }}
gcp_credentials: ${{ secrets.GCP_CREDENTIALS }}
- name: Build
working-directory: ./workers-api
run: yarn build
- name: Check Types
working-directory: ./workers-api
run: yarn run types:check
- name: Run Unit Tests
working-directory: ./workers-api
run: yarn run test