Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryun1 committed Jan 16, 2025
1 parent 7e00819 commit 057165c
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ on:
push:
branches:
- '**'
pull_request:
branches:
- main

jobs:
test:
Expand All @@ -23,15 +26,17 @@ jobs:
node-version: ${{ matrix.node-version }}

- name: Install dependencies
run: |
cd ./src
npm install
run: npm install
working-directory: ./src

- name: Run linter
run: npm run lint
working-directory: ./src

- name: Run tests
run: npm test
working-directory: ./src

- name: Build application
run: npm run build
run: npm run build
working-directory: ./src

0 comments on commit 057165c

Please sign in to comment.