Skip to content

ci: remove Install Dependencies job #108

ci: remove Install Dependencies job

ci: remove Install Dependencies job #108

Workflow file for this run

name: CI on Pull Request
on:
push:
branches: ['main']
pull_request:
branches: ['main']
workflow_dispatch:
jobs:
lint:

Check failure on line 11 in .github/workflows/ci-on-pr.yml

View workflow run for this annotation

GitHub Actions / CI on Pull Request

Invalid workflow file

The workflow is not valid. .github/workflows/ci-on-pr.yml (Line: 11, Col: 3): The workflow must contain at least one job with no dependencies.
name: Lint Code
runs-on: ubuntu-latest
needs: install
steps:
- name: Checkout Repository
uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: latest
- name: ESLint
run: yarn eslint
- name: Prettier
run: yarn prettier:ci