Skip to content

Commit

Permalink
TRACING-4435 reverted
Browse files Browse the repository at this point in the history
  • Loading branch information
yash-sumo committed Oct 24, 2024
1 parent c969c49 commit 5bb739e
Showing 1 changed file with 4 additions and 26 deletions.
30 changes: 4 additions & 26 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,39 +12,17 @@ jobs:
runs-on: ubuntu-latest

steps:
# Checkout code
- uses: actions/checkout@v2
with:
submodules: true

# Setup Node.js environment
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: 14.x

# Remove existing node_modules to ensure a clean install
- run: rm -rf node_modules

# Install dependencies using npm ci (clean install)
- name: Install dependencies
run: npm ci --verbose
env:
NODE_ENV: development

# Build the project
- name: Build the project
run: npm run build

# Check types (optional)
- name: Run type checking
run: npm run types

# Run tests
- name: Run tests
run: npm test

# Upload build artifacts
- run: npm ci
- run: npm run build
- run: npm run types
- run: npm test
- uses: actions/upload-artifact@v4
with:
path: |
Expand Down

0 comments on commit 5bb739e

Please sign in to comment.