Migrate training into celery and upload results to s3 #231
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: Frontend Workflow Check | |
on: [pull_request, push] | |
concurrency: preview-${{ github.ref }} | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install pnpm | |
run: npm install -g pnpm | |
working-directory: ./frontend | |
- name: Install | |
run: pnpm install --frozen-lockfile | |
id: install | |
working-directory: ./frontend | |
- name: Run ESLint | |
run: pnpm run lint | |
working-directory: ./frontend | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install pnpm | |
run: npm install -g pnpm | |
working-directory: ./frontend | |
- name: Install | |
run: pnpm install --frozen-lockfile | |
working-directory: ./frontend | |
- name: Test | |
run: pnpm test | |
working-directory: ./frontend | |