Skip to content

huaichaow is testing out GitHub Actions πŸš€ #17

huaichaow is testing out GitHub Actions πŸš€

huaichaow is testing out GitHub Actions πŸš€ #17

Workflow file for this run

name: Integration
run-name: ${{ github.actor }} is testing out GitHub Actions πŸš€
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