diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 83896fc..b8faede 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -1,12 +1,8 @@ name: ci on: - push: - branches: - - main pull_request: branches: - main - jobs: ci: runs-on: ubuntu-latest @@ -19,19 +15,9 @@ jobs: with: node-version: 16.x cache: yarn - - name: Install dependencies + - name: Dependency installation run: yarn install --frozen-lockfile - - name: Lint - run: yarn lint - - name: Type check - run: yarn type-check - - - - name: Install dependencies - run: yarn install - - name: Lint check run: yarn lint - - name: Type check - run: yarn type-check \ No newline at end of file + run: yarn type-check