Skip to content

Commit

Permalink
Remove frontend from CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ivntsng committed Dec 2, 2024
1 parent 908738c commit a01e812
Showing 1 changed file with 0 additions and 27 deletions.
27 changes: 0 additions & 27 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ env:
ONSHAPE_API: ${{ secrets.ONSHAPE_API }}
ONSHAPE_ACCESS_KEY: ${{ secrets.ONSHAPE_ACCESS_KEY }}
ONSHAPE_SECRET_KEY: ${{ secrets.ONSHAPE_SECRET_KEY }}
VITE_STRIPE_PUBLISHABLE_KEY: ${{ secrets.VITE_STRIPE_PUBLISHABLE_KEY }}
STRIPE_SECRET_KEY: ${{ secrets.STRIPE_SECRET_KEY }}
STRIPE_WEBHOOK_SECRET: ${{ secrets.STRIPE_WEBHOOK_SECRET }}
STRIPE_CONNECT_WEBHOOK_SECRET: ${{ secrets.STRIPE_CONNECT_WEBHOOK_SECRET }}
Expand All @@ -39,47 +38,21 @@ jobs:
timeout-minutes: 10
runs-on: ubuntu-latest

# Commenting out because PyTest mocks these services.
# services:
# dynamodb-local:
# image: amazon/dynamodb-local
# options: >-
# -p 0:8000
# -v /tmp/dynamodb:/data
# ports:
# - 8000

steps:
- name: Check out repository
uses: actions/checkout@v3

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: "20"

- name: Restore cache
id: restore-cache
uses: actions/cache/restore@v3
with:
path: |
${{ env.pythonLocation }}
.mypy_cache/
node_modules/
key: tests-${{ github.event.pull_request.base.sha || github.sha }}
restore-keys: |
tests-
- name: Install Node package
working-directory: frontend
run: |
npm install
- name: Build frontend
run: |
npm run build
working-directory: frontend

- name: Set up Python
uses: actions/setup-python@v4
with:
Expand Down

0 comments on commit a01e812

Please sign in to comment.