-
Notifications
You must be signed in to change notification settings - Fork 254
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
👷 Split lint-and-test into "lint" and "test" (#448)
See #447 (comment)
- Loading branch information
1 parent
6c70a72
commit c706027
Showing
2 changed files
with
50 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
name: Lint | ||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
lint: | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 10 | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
# Could use something like rmacklin/fetch-through-merge-base@v0 instead when the repo gets bigger | ||
fetch-depth: 0 | ||
- name: "Extracting the merge base into 'SINCE'" | ||
id: since | ||
run: | | ||
if [ -z "${{ github.event.pull_request.head.ref }}" ] | ||
then | ||
echo "SINCE=${{ github.sha }}^1" >> $GITHUB_OUTPUT | ||
else | ||
echo "SINCE=$(git merge-base origin/${{ github.event.pull_request.base.ref }} ${{ github.sha }})" >> $GITHUB_OUTPUT | ||
fi | ||
- run: corepack enable | ||
|
||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: "18" | ||
cache: "pnpm" | ||
cache-dependency-path: "**/pnpm-lock.yaml" | ||
- run: | | ||
pnpm install --frozen-lockfile --filter . | ||
pnpm install --frozen-lockfile --filter ...[${{ steps.since.outputs.SINCE }}]... | ||
pnpm --filter ...[${{ steps.since.outputs.SINCE }}]... build | ||
- name: "Checking lint errors" | ||
run: | | ||
pnpm --filter ...[${{ steps.since.outputs.SINCE }}] lint:check | ||
- name: "Checking format errors" | ||
run: | | ||
pnpm --filter ...[${{ steps.since.outputs.SINCE }}] format:check | ||
- name: Check types | ||
run: pnpm --filter ...[${{ steps.since.outputs.SINCE }}] check |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters