Skip to content

chore: setup the github action, add release action, update package name #1

chore: setup the github action, add release action, update package name

chore: setup the github action, add release action, update package name #1

Workflow file for this run

name: Run Test case
on:
pull_request:
types: [opened, synchronize]
branches: ['main']
jobs:
run-test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: yarn install
- run: yarn test