Skip to content

Remove unused import in payment.spec.ts #8

Remove unused import in payment.spec.ts

Remove unused import in payment.spec.ts #8

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
main:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
# Cache node_modules
- uses: actions/setup-node@v3
with:
node-version: 20
cache: 'npm'
- run: npm ci
- run: npx nx format:check
- run: npx nx run-many -t lint,test --parallel=3
- name: Publish Package
if: github.ref == 'refs/heads/main'
run: npx nx run-many -t publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}