Initial setup #17
Workflow file for this run
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
name: Check | |
on: | |
pull_request: | |
branches: | |
- main | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup env | |
uses: ./.github/actions/setup | |
- name: Run linter | |
run: pnpm run lint | |
typecheck: | |
name: Typecheck | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup env | |
uses: ./.github/actions/setup | |
- name: Run typecheck | |
run: pnpm run typecheck | |
test-unit: | |
name: Unit Tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup env | |
uses: ./.github/actions/setup | |
- name: Run tests | |
run: pnpm test | |
test-action: | |
name: Action Test | |
runs-on: ubuntu-latest | |
permissions: | |
issues: read | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup env | |
uses: ./.github/actions/setup | |
- name: Build | |
run: pnpm run build | |
- name: Run action | |
id: action | |
uses: ./ | |
with: | |
stale-label: stale | |
days-before-close: 7 | |
close-message: Closing this issue as it has become stale. | |
dry-run: true | |
- name: Check output | |
run: | | |
echo 'closed-issues=${{ steps.action.outputs.closed-issues }}' | |
${{ startsWith(steps.action.outputs.closed-issues, '[') }} || { echo '::error::Expected "closed-issues" output to start with ['; exit 1; } | |
${{ endsWith(steps.action.outputs.closed-issues, ']') }} || { echo '::error::Expected "closed-issues" output to end with ]'; exit 1; } |