Skip to content

Commit

Permalink
feat(github-action): created github action for the repo
Browse files Browse the repository at this point in the history
  • Loading branch information
231tr0n authored Mar 3, 2024
1 parent 930050d commit eab5357
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: CI

on: [push, pull_request]

jobs:
commitlint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install required dependencies
run: |
apt update
apt install -y sudo
sudo apt install -y git curl
curl -sL https://deb.nodesource.com/setup_lts.x | sudo -E bash -
sudo DEBIAN_FRONTEND=noninteractive apt install -y nodejs
- name: Print versions
run: |
git --version
node --version
npm --version
- name: Install dependencies
run: npm install
- name: Commitlint
if: github.event_name == 'push'
run: npx commitlint --from HEAD~1 --to HEAD --verbose
- name: Lint
run: npm run lint
- name: Build
run: npm run build

0 comments on commit eab5357

Please sign in to comment.