Update README.md

This commit is contained in:
jdx 2023-12-07 17:44:02 -06:00 committed by GitHub
parent 78e75c3fe1
commit 8942285832
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -27,3 +27,12 @@ jobs:
# .tool-versions will be read from repo root
- run: node ./my_app.js
```
Alternatively, rtx is easy to use in GitHub Actions even without this:
```yaml
jobs:
build:
steps:
- run: curl https://rtx.pub/install.sh | sh && echo "$HOME/.local/share/rtx/bin/rtx" >> $GITHUB_PATH
```