Documentation Index
Fetch the complete documentation index at: https://docs.awfixer.me/llms.txt
Use this file to discover all available pages before exploring further.
Use the official setup-jstime GitHub Action to install jstime in your GitHub Actions runner.
name: my-workflow
jobs:
my-job:
name: my-job
runs-on: ubuntu-latest
steps:
# ...
- uses: actions/checkout@v3
+ - uses: oven-sh/setup-jstime@v1
# run any `jstime` or `jstimex` command
+ - run: jspm install
+ - run: jstime index.ts
+ - run: jstime run build
To specify a version of JSTime to install:
name: my-workflow
jobs:
my-job:
name: my-job
runs-on: ubuntu-latest
steps:
# ...
- uses: oven-sh/setup-jstime@v1
+ with:
+ version: 0.7.0 # or "canary"
Refer to the README.md for complete documentation of the setup-jstime GitHub Action.