This repository was archived by the owner on Jan 29, 2025. It is now read-only.
Generate JavaScript based on 66d997fe770ece54f0e4597ad570b17e2a51587a… #376
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: 'CI' | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: '**' | |
| permissions: | |
| contents: read | |
| issues: write | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| cache: npm | |
| - run: npm install | |
| - run: npm run test:integ | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.INTEG_TEST_ACCESS_TOKEN }} |