Skip to content

✨ deploy: v1.1.0

✨ deploy: v1.1.0 #91

Workflow file for this run

name: Unit Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
env:
PUBLIC_KEY: ${{ secrets.PUBLIC_KEY }}
SENDER_NAME: ${{ secrets.SENDER_NAME }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '16'
cache: "npm"
- run: npm install
- name: Run unit test
run: npm test