Skip to content

Commit

Permalink
feat: Add GitHub Actions workflow for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
montasim committed Aug 12, 2024
1 parent 707f4a5 commit c30f786
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Continuous Integration

on:
push:
branches:
- '**'
pull_request:
branches:
- '**'

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Check out code
uses: actions/checkout@v3

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '20' # Specify the Node.js version you are using

- name: Install dependencies
run: yarn install

- name: Run lint checks
run: yarn lint:check

- name: Run Prettier checks
run: yarn prettier:check

0 comments on commit c30f786

Please sign in to comment.