this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Create main.yml

test yml

authored by

Akshat Kotpalliwar and committed by
GitHub
0a40e18c 4d8e2b40

+28
+28
.github/workflows/main.yml
··· 1 + name: CI Node 2 + 3 + on: 4 + push: 5 + branches: 6 + - main 7 + 8 + jobs: 9 + build: 10 + runs-on: ubuntu-latest 11 + 12 + steps: 13 + - name: Checkout Repository 14 + uses: actions/checkout@v2 15 + 16 + - name: Setup Node.js 17 + uses: actions/setup-node@v4 18 + with: 19 + node-version: 20 20 + 21 + - name: Install Dependencies 22 + run: npm install 23 + 24 + - name: Build TypeScript 25 + run: npm run build 26 + 27 + - name: start 28 + run: npm run start