homebox/.github/workflows/partial-frontend.yaml

65 lines
1.3 KiB
YAML
Raw Normal View History

2022-09-09 19:34:19 +00:00
name: Frontend / E2E
2022-09-03 09:30:45 +00:00
on:
2022-09-09 18:49:51 +00:00
workflow_call:
2022-09-03 09:30:45 +00:00
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: pnpm/action-setup@v2.4.0
with:
version: 6.0.2
- name: Install dependencies
run: pnpm install --shamefully-hoist
working-directory: frontend
- name: Run Lint
run: pnpm run lint:ci
working-directory: frontend
- name: Run Typecheck
run: pnpm run typecheck
working-directory: frontend
integration-tests:
name: Integration Tests
2022-09-03 09:30:45 +00:00
runs-on: ubuntu-latest
steps:
2022-09-09 19:34:19 +00:00
- name: Checkout
uses: actions/checkout@v4
with:
2022-09-09 19:34:19 +00:00
fetch-depth: 0
2022-09-09 19:34:19 +00:00
- name: Install Task
uses: arduino/setup-task@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
2022-09-03 09:30:45 +00:00
2022-09-04 02:45:10 +00:00
- name: Set up Go
uses: actions/setup-go@v5
2022-09-04 02:45:10 +00:00
with:
go-version: "1.21"
2022-09-04 02:45:10 +00:00
- uses: actions/setup-node@v4
2022-09-04 02:47:53 +00:00
with:
node-version: 18
- uses: pnpm/action-setup@v2.4.0
2022-09-04 02:47:53 +00:00
with:
version: 6.0.2
2022-09-04 02:45:10 +00:00
2022-09-03 09:30:45 +00:00
- name: Install dependencies
run: pnpm install
2022-09-03 09:31:38 +00:00
working-directory: frontend
2022-09-03 09:30:45 +00:00
- name: Run Integration Tests
2022-09-09 19:34:19 +00:00
run: task test:ci