Skip to content

Commit

Permalink
chore: add github actions for CI
Browse files Browse the repository at this point in the history
Signed-off-by: dhmlau <[email protected]>
  • Loading branch information
dhmlau committed May 4, 2023
1 parent 12f4c0e commit 2ac920a
Show file tree
Hide file tree
Showing 5 changed files with 18,263 additions and 1,055 deletions.
52 changes: 52 additions & 0 deletions .github/workflows/continuous-integration.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
name: Continuous Integration

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 5
strategy:
matrix:
node-version: [16, 18] # Maintenance, Active LTS & Current
fail-fast: false
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- name: Run test
run: npm test

code-lint:
name: Code Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16 # LTS
- run: npm ci --ignore-scripts
- name: Verify code linting
run: npm run lint

# commit-lint:
# name: Commit Lint
# runs-on: ubuntu-latest
# if: ${{ github.event.pull_request }}
# steps:
# - uses: actions/checkout@v3
# with:
# fetch-depth: 0
# - uses: actions/setup-node@v3
# with:
# node-version: 16 # LTS
# - run: npm ci --ignore-scripts
# - name: Verify commit linting
# run: npx --no -p @commitlint/cli commitlint --from origin/master --to HEAD --verbose
17 changes: 17 additions & 0 deletions commitlint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
const isCI = process.env.CI;
module.exports = {
extends: [
'@commitlint/config-conventional',
// https://github.com/marionebl/commitlint/pull/406
// '@commitlint/config-lerna-scopes',
'./packages/monorepo/lib/config-lerna-scopes',
],
rules: {
'header-max-length': [2, 'always', 100],
'body-leading-blank': [2, 'always'],
'footer-leading-blank': [0, 'always'],
// Only enforce the rule if CI flag is not set. This is useful for release
// commits to skip DCO
'signed-off-by': [isCI ? 0 : 2, 'always', 'Signed-off-by:'],
},
};
Loading

0 comments on commit 2ac920a

Please sign in to comment.