Cicd
Use the official setup-jstime GitHub Action to install jstime in your GitHub Actions runner.
name: my-workflowjobs: 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 buildTo specify a version of JSTime to install:
name: my-workflowjobs: 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.