diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 22fe58e..ef1c2b6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,26 +1,26 @@ name: CI on: - push: - branches-ignore: - - "dependabot/**" - pull_request_target: + push: + branches-ignore: + - "dependabot/**" + pull_request_target: jobs: - lint: - timeout-minutes: 5 - runs-on: ubuntu-latest - steps: - - name: Checkout repo - uses: actions/checkout@v3 + lint: + timeout-minutes: 5 + runs-on: ubuntu-latest + steps: + - name: Checkout repo + uses: actions/checkout@v3 - - name: Setup node - uses: actions/setup-node@v3 - with: - node-version: "18" + - name: Setup node + uses: actions/setup-node@v3 + with: + node-version: "18" - - name: Linting - run: npx -y prettier -c . + - name: Linting + run: npx -y prettier -c . - - name: Type check - run: npx -y tsc --strict + - name: Type check + run: npx -y tsc --strict