Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove association frontend #3594

Merged
merged 5 commits into from
Nov 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,6 @@ pycon-frontend:
backend:
- backend/*

association-frontend:
- association-frontend/*

infrastructure:
- infrastructure/*

Expand Down
40 changes: 40 additions & 0 deletions .github/workflows/frontend-lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: Frontend Lint

on:
pull_request:
paths:
- "frontend/**/*"
- "frontend/*"
- ".github/workflows/frontend-lint.yml"


jobs:
lint:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./frontend
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '14'
- uses: pnpm/action-setup@v2.2.2
with:
version: 7.3.0
- name: Cache dependencies
uses: actions/cache@v1
id: cache
with:
path: ./node_modules
key: node_modules-frontend-${{ hashFiles('pnpm-lock.yaml') }}-v4
- name: Install dependencies
run: pnpm install
- name: Codegen
run: pnpm run codegen
- name: Lint
run: pnpm run lint
- name: TS Lint
run: pnpm run lint:ts
- name: Prettier
run: pnpm run lint:prettier
56 changes: 0 additions & 56 deletions .github/workflows/javascript-lint.yml

This file was deleted.

3 changes: 0 additions & 3 deletions association-frontend/.dockerignore

This file was deleted.

3 changes: 0 additions & 3 deletions association-frontend/.eslintrc

This file was deleted.

8 changes: 0 additions & 8 deletions association-frontend/.prettierignore

This file was deleted.

9 changes: 0 additions & 9 deletions association-frontend/.prettierrc

This file was deleted.

9 changes: 0 additions & 9 deletions association-frontend/README.md

This file was deleted.

18 changes: 0 additions & 18 deletions association-frontend/codegen.yml

This file was deleted.

5 changes: 0 additions & 5 deletions association-frontend/next-env.d.ts

This file was deleted.

30 changes: 0 additions & 30 deletions association-frontend/next.config.js

This file was deleted.

51 changes: 0 additions & 51 deletions association-frontend/package.json

This file was deleted.

Loading
Loading