Skip to content

huaichaow is testing on main with f90aed1b31ead4fdfffac7237963f89ba065f3a9 #29

huaichaow is testing on main with f90aed1b31ead4fdfffac7237963f89ba065f3a9

huaichaow is testing on main with f90aed1b31ead4fdfffac7237963f89ba065f3a9 #29

Workflow file for this run

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