lix refactor #1087
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: Ninja i18n action | |
on: | |
pull_request_target: | |
# explicitly configure permissions, in case your GITHUB_TOKEN workflow permissions are set to read-only in repository settings | |
permissions: | |
pull-requests: write | |
jobs: | |
test-action: | |
name: GitHub Actions Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
id: checkout | |
uses: actions/checkout@v4 | |
- name: Setup Pnpm | |
uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Install Dependencies | |
run: pnpm install | |
- name: Build | |
run: pnpm --filter @inlang/github-lint-action... build | |
- name: Test Local Action | |
id: test-action | |
uses: ./inlang/source-code/github-lint-action | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |