Sell transaction bug and number input bug squashed #46
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Frontend CI | |
on: | |
push: | |
paths: | |
- 'frontend/**' | |
branches: [ main ] | |
pull_request: | |
paths: | |
- 'frontend/**' | |
branches: [ main ] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./frontend | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '23' | |
- name: Install dependencies | |
run: npm ci | |
## Currently not running tests | |
# - name: Run tests | |
# run: npm test | |
- name: Run linting | |
run: npm run lint | |
- name: Run formatting | |
run: npm run format |