[CI] Adjusted secrets (#80) #188
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: Frontend build | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - '[0-9]+.[0-9]+' | |
| pull_request: ~ | |
| jobs: | |
| frontend-test: | |
| name: Frontend build test | |
| runs-on: 'ubuntu-24.04' | |
| timeout-minutes: 5 | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: actions/setup-node@v2 | |
| with: | |
| node-version: '18' | |
| - run: yarn install | |
| - run: yarn test |