Add link to new TS compatibility mode #87
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
k6_transpile_bundle_test: | |
name: Transpile, bundle and run | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: [ 16, 18 ] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node }} | |
- run: npm ci | |
- run: npm run bundle | |
- name: Run local k6 test | |
uses: grafana/k6-action@v0.2.0 | |
with: | |
filename: dist/get-200-status-test.js |