Skip to content

Fix switched provider URLs #302

Fix switched provider URLs

Fix switched provider URLs #302

Workflow file for this run

name: Github Page Test
on:
push:
branches:
- main
paths-ignore:
- LICENSE
- README.md
- .gitignore
- .github/**
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install Packages
run: npm ci
- name: Perform Tests
run: npm run test:coverage
- name: Perform Audit
run: npm audit --production