Skip to content

Commit

Permalink
fix: Build step in GitHub Actions workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
talhag3 committed Aug 17, 2024
1 parent 62f5fbe commit 0b1354f
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 30 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ jobs:

- name: Install dependencies
run: npm install

- name: Build project
run: npm run build # Ensure TypeScript files are compiled

- name: Lint code
run: npm run lint
Expand Down
57 changes: 27 additions & 30 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,41 +1,38 @@
lib-cov
*.seed
*.log
*.csv
*.dat
*.out
*.pid
*.gz
*.swp
# Node.js modules
node_modules/

pids
logs
results
tmp
# Build output
dist/

# Build
public/css/main.css
# TypeScript cache
*.tsbuildinfo

# Coverage reports
coverage
# Logs
logs/
*.log
npm-debug.log*

# API keys and secrets
# Environment variables
.env

# Dependency directory
node_modules
bower_components

# Editors
.idea
*.iml
# Coverage reports
coverage/

# OS metadata
# System files
.DS_Store
Thumbs.db

# Ignore built ts files
dist/**/*
# IDE/editor settings
.vscode/
.idea/

# npm
package-lock.json
yarn.lock

# Local npm cache
.npm/

# ignore yarn.lock
yarn.lock
# Temporary files
tmp/
temp/

0 comments on commit 0b1354f

Please sign in to comment.