Skip to content

refactor payment test #12

refactor payment test

refactor payment test #12

Workflow file for this run

name: "CI"
on:
push:
branches: "**"
pull_request:
branches: "**"
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x, 19.x, 20.x]
steps:
- uses: actions/checkout@v3
with:
persist-credentials: false
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: npm
- run: npm ci
- run: npm test