Skip to content

✅ Add Tests

✅ Add Tests #4

Workflow file for this run

name: CI
on:
pull_request:
branches:
- "**"
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 18
- name: Installing Dependencies
working-directory: ./functions
run: yarn
- name: Linting
working-directory: ./functions
run: yarn run lint
- name: Building App
working-directory: ./functions
run: yarn run build
- name: Running Tests
working-directory: ./functions
run: yarn run test