Skip to content

Commit

Permalink
Add github workflow actions. (#46)
Browse files Browse the repository at this point in the history
* Add github action workflow for test runner

* Set yarn version in package.json

* Enable corepack in workflow

* Remove pre push git hook

* Set runner version to current lts

* Fix duplicate name string
  • Loading branch information
peterMuriuki authored Dec 20, 2024
1 parent ae737ff commit 02e9349
Show file tree
Hide file tree
Showing 7 changed files with 9,575 additions and 6,723 deletions.
46 changes: 0 additions & 46 deletions .circleci/config.yml

This file was deleted.

46 changes: 46 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: Code checker

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
commit-checks:
runs-on: ubuntu-24.04

steps:
- name: Checkout repository
uses: actions/checkout@v4

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

- name: Enable corepack for node package managers
run: corepack enable

- name: Install dependencies
run: yarn install

- name: Run linter
run: yarn lint

- name: Run tests
env:
CI: true
run: yarn test:coverage --runInBand --forceExit --verbose

- name: Run coveralls
run: cat coverage/lcov.info | node_modules/coveralls/bin/coveralls.js

- name: Check formatting
run: yarn lint

# Ensure no vulnerable dependencies (optional)
- name: Audit dependencies
run: yarn audit --level moderate
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ npm-debug.log*
yarn-debug.log*
yarn-error.log*
.vscode/
.yarn

# logs
logs
Expand Down
4 changes: 0 additions & 4 deletions .husky/pre-push

This file was deleted.

1 change: 1 addition & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
nodeLinker: node-modules
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -97,5 +97,6 @@
"rimraf": "^3.0.1",
"supertest": "^6.2.2",
"ts-jest": "^27.1.3"
}
},
"packageManager": "[email protected]"
}
Loading

0 comments on commit 02e9349

Please sign in to comment.