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

43 lines
834 B
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:
Frontend:
runs-on: ubuntu-latest
steps:
2022-09-09 19:34:19 +00:00
- name: Checkout
uses: actions/checkout@v3
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@v3
2022-09-04 02:45:10 +00:00
with:
go-version: 1.19
2022-09-04 02:45:10 +00:00
2022-09-04 02:47:53 +00:00
- uses: actions/setup-node@v3
with:
node-version: 18
- uses: pnpm/action-setup@v2.2.4
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 linter 👀
run: pnpm lint
working-directory: "frontend"
- name: Run Integration Tests
2022-09-09 19:34:19 +00:00
run: task test:ci