Skip to content

feat: add testing workflow #3

feat: add testing workflow

feat: add testing workflow #3

Workflow file for this run

name: 🚀 Test and Build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: 📥 Checkout code
uses: actions/checkout@v2
- name: ⚙️ Install dependencies
run: npm install
- name: ✅ Run unit tests
run: npm test test/unit
- name: ✅ Run e2e tests
run: ./scripts/test-e2e.sh