Skip to content

Commit

Permalink
chore: Setup GitHub Actions (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
fahad19 authored Mar 24, 2024
1 parent 1dd4a88 commit 56d4935
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Continuous Integration

on: [push]

jobs:
continuous-integration:
name: Continuous Integration
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4

- uses: actions/setup-node@v4
with:
node-version-file: .nvmrc

- name: Install dependencies
run: npm ci

- name: Build
run: npm run build
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
20

0 comments on commit 56d4935

Please sign in to comment.