39 lines
672 B
YAML
39 lines
672 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
branches: [main]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup Node.js
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: '20'
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
npm install 2>&1 || echo "npm install failed"
|
|
|
|
- name: List files
|
|
run: ls -la
|
|
|
|
- name: Check package.json
|
|
run: cat package.json
|
|
|
|
- name: Run build
|
|
run: |
|
|
if [ -f "dist/index.js" ]; then
|
|
echo "Build exists"
|
|
else
|
|
npx tsc 2>&1 || echo "Build failed"
|
|
fi
|