huaichaow is testing on release/main with 1547e6bc1c9267c4452cea3adb658c249ddd443b #36
Workflow file for this run
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: Integration | |
run-name: ${{ github.actor }} is testing on ${{ github.ref_name }} with ${{ github.sha }} | |
on: [ push ] | |
concurrency: | |
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}' | |
cancel-in-progress: true | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v3 | |
- run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner." | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '16' | |
- name: Install dependencies | |
run: npm ci | |
- name: Run Linter | |
run: npm run lint | |
- name: Run tests | |
run: npm run test | |
- name: Check types | |
run: npm run check-type | |
- name: Build | |
run: npm run build |