Skip to content

feat: Features/Auth (#6) #7

feat: Features/Auth (#6)

feat: Features/Auth (#6) #7

Workflow file for this run

name: PR Test
on:
push:
paths: ['src/**']
pull_request:
paths: ['src/**']
types: [ opened, reopened, synchronize, labeled ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install dependencies
run: yarn install
- name: Run tests
run: yarn test