Generate JavaScript based on 4b0ad4f513ec8af25904e051f15df7e5ed350600… #361
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
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 }} |