fix(github-action): removed unwanted steps and added testing job #4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
commitlint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Install required dependencies | |
run: | | |
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 | |
- name: Test | |
run: npm run test |