Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork32
fix: Add jsx-runtime to aliases#139
Workflow file for this run
This file contains hidden or 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
| name:Main | |
| on: | |
| push: | |
| branches: | |
| -master | |
| pull_request: | |
| jobs: | |
| test: | |
| name:Test | |
| runs-on:ubuntu-latest | |
| timeout-minutes:5 | |
| steps: | |
| -uses:actions/checkout@v3 | |
| -uses:actions/setup-node@v3 | |
| with: | |
| node-version-file:"package.json" | |
| cache:"npm" | |
| cache-dependency-path:"**/package-lock.json" | |
| -run:npm ci | |
| -run:npm run build | |
| -run:npm test |