mirror of
https://github.com/jdx/mise-action.git
synced 2026-05-14 13:50:33 +00:00
No description
|
|
||
|---|---|---|
| .github | ||
| .husky | ||
| __tests__ | ||
| dist | ||
| src | ||
| .eslintignore | ||
| .eslintrc.json | ||
| .gitattributes | ||
| .gitignore | ||
| .prettierignore | ||
| .prettierrc.json | ||
| action.yml | ||
| CODEOWNERS | ||
| jest.config.js | ||
| LICENSE | ||
| package-lock.json | ||
| package.json | ||
| README.md | ||
| tsconfig.json | ||
Example Workflow
name: test
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: jdxcode/rtx-action@v1
with:
tool_versions: |
shellcheck 0.9.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- run: shellcheck scripts/*.sh
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: jdxcode/rtx-action@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# .tool-versions will be read from repo root
- run: node ./my_app.js