Remove install job

This commit is contained in:
thomas-senechal
2025-01-05 23:28:19 +01:00
parent 9b004ca6a6
commit 446be21b53

View File

@@ -8,7 +8,7 @@ on:
- ".github/actions/**"
jobs:
install:
lint:
runs-on: macos-14
steps:
- uses: actions/checkout@v4
@@ -16,12 +16,6 @@ jobs:
uses: ./.github/actions/yarn-install
with:
working_directory: ./app
lint:
needs: install
runs-on: macos-14
steps:
- uses: actions/checkout@v4
- name: Run linter
run: yarn lint
working-directory: ./app
@@ -30,10 +24,13 @@ jobs:
working-directory: ./app
test:
needs: install
runs-on: macos-14
steps:
- uses: actions/checkout@v4
- name: Install Dependencies
uses: ./.github/actions/yarn-install
with:
working_directory: ./app
- name: Install app dependencies
run: yarn install-app
working-directory: ./app