Fork of mise-action for forgejo
Find a file
dependabot[bot] 8d8159a5e9
Bump prettier from 2.8.7 to 2.8.8 (#68)
Bumps [prettier](https://github.com/prettier/prettier) from 2.8.7 to 2.8.8.
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](https://github.com/prettier/prettier/compare/2.8.7...2.8.8)

---
updated-dependencies:
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-04-24 12:38:53 +00:00
.github chore: added workflow_dispatch 2023-03-30 12:17:08 -05:00
.husky dist 2023-01-14 08:44:01 -06:00
__tests__ download rtx 2023-02-20 23:27:49 -06:00
dist feat: add support for saving / restoring rtx cache (#64) 2023-04-11 00:36:00 +00:00
src feat: add support for saving / restoring rtx cache (#64) 2023-04-11 00:36:00 +00: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 feat: add support for saving / restoring rtx cache (#64) 2023-04-11 00:36:00 +00: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 prettier from 2.8.7 to 2.8.8 (#68) 2023-04-24 12:38:53 +00:00
package.json Bump prettier from 2.8.7 to 2.8.8 (#68) 2023-04-24 12:38:53 +00:00
README.md fetch runtime from rtx.pub (#48) 2023-03-25 20:27:41 +00:00
tsconfig.json use more modern node/ts (#46) 2023-03-25 15:19:50 -05: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
      - run: shellcheck scripts/*.sh
  test:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3
      - uses: jdxcode/rtx-action@v1
      # .tool-versions will be read from repo root
      - run: node ./my_app.js