Fork of mise-action for forgejo
Find a file
dependabot[bot] a5671edece
Bump typescript from 4.9.5 to 5.0.2 (#44)
Bumps [typescript](https://github.com/Microsoft/TypeScript) from 4.9.5 to 5.0.2.
- [Release notes](https://github.com/Microsoft/TypeScript/releases)
- [Commits](https://github.com/Microsoft/TypeScript/compare/v4.9.5...v5.0.2)

---
updated-dependencies:
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-03-20 12:44:25 +00:00
.github Require to specify GITHUB_TOKEN for considering API limit 2023-02-23 04:44:03 +09:00
.husky dist 2023-01-14 08:44:01 -06:00
__tests__ download rtx 2023-02-20 23:27:49 -06:00
dist Clobber rtx binary if it already exists (#36) 2023-03-06 09:35:21 -06:00
src Clobber rtx binary if it already exists (#36) 2023-03-06 09:35:21 -06:00
.eslintignore Initial commit 2023-01-14 08:11:40 -06:00
.eslintrc.json Initial commit 2023-01-14 08:11:40 -06:00
.gitattributes Initial commit 2023-01-14 08:11:40 -06:00
.gitignore Initial commit 2023-01-14 08:11:40 -06:00
.prettierignore Initial commit 2023-01-14 08:11:40 -06:00
.prettierrc.json Initial commit 2023-01-14 08:11:40 -06:00
action.yml change action name 2023-02-21 23:52:09 -06:00
CODEOWNERS updated CODEOWNERS 2023-02-21 23:18:57 -06:00
jest.config.js Initial commit 2023-01-14 08:11:40 -06:00
LICENSE Initial commit 2023-01-14 08:11:40 -06:00
package-lock.json Bump typescript from 4.9.5 to 5.0.2 (#44) 2023-03-20 12:44:25 +00:00
package.json Bump typescript from 4.9.5 to 5.0.2 (#44) 2023-03-20 12:44:25 +00:00
README.md Require to specify GITHUB_TOKEN for considering API limit 2023-02-23 04:44:03 +09:00
tsconfig.json Initial commit 2023-01-14 08:11:40 -06:00

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