Skip to content

Commit

Permalink
gh workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
hAbuMustafa committed Aug 31, 2024
1 parent 4b0cabb commit 6dbd1e0
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: CI

on:
pull_request:
push:
branches:
- main

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
ci:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20'

- name: Install dependencies
run: npm install

- name: Run CI
run: npm run ci

0 comments on commit 6dbd1e0

Please sign in to comment.