Skip to content

huaichaow is testing on main with 774ec57bfe66215392221b1a9fba6c1cef776ad1 #30

huaichaow is testing on main with 774ec57bfe66215392221b1a9fba6c1cef776ad1

huaichaow is testing on main with 774ec57bfe66215392221b1a9fba6c1cef776ad1 #30

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