Skip to content

Merge pull request #1 from TIHBS/v2-rewrite-support-prepare #3

Merge pull request #1 from TIHBS/v2-rewrite-support-prepare

Merge pull request #1 from TIHBS/v2-rewrite-support-prepare #3

Workflow file for this run

name: run api testing
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
api-test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
run: npm install
- name: API testing
run: npm run test