Skip to content

add to gitignore

add to gitignore #11

Workflow file for this run

name: Test
on:
push:
branches:
- main
- production
- joel
- development
pull_request:
branches:
jobs:
test:
name: Run tests
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v3
- name: Set up node
uses: actions/setup-node@v3
with:
node-version: lts/*
- name: Install dependencies
run: yarn install
- name: Run tests
run: yarn run test