Skip to content

Commit

Permalink
add CI workflow (#23)
Browse files Browse the repository at this point in the history
  • Loading branch information
mahendraHegde committed Mar 27, 2024
1 parent 39d65d7 commit bf04255
Show file tree
Hide file tree
Showing 7 changed files with 63 additions and 7 deletions.
3 changes: 2 additions & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
dist/
node_modules/
node_modules/
coverage/
2 changes: 2 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@
"plugins": ["unused-imports"],
"rules": {
"@typescript-eslint/strict-boolean-expressions": "off",
"@typescript-eslint/no-unsafe-argument": "warn",
"@typescript-eslint/return-await": "off",
"@typescript-eslint/no-unused-vars": "off",
"unused-imports/no-unused-imports": "error",
"unused-imports/no-unused-vars": [
Expand Down
50 changes: 50 additions & 0 deletions .github/workflows/ci-workflow.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
name: CI Pipeline

on:
push:
branches: [main]
pull_request:
workflow_dispatch:

jobs:
lint-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x, 20.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}

- uses: pnpm/action-setup@v3
name: Install pnpm
with:
version: 8.15.4
run_install: false

- name: Get pnpm store directory
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
# - uses: actions/cache@v3
# name: Setup pnpm cache
# with:
# path: ${{ env.STORE_PATH }}
# key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
# restore-keys: |
# ${{ runner.os }}-pnpm-store-

# - name: Install
# run: pnpm install --frozen-lockfile --strict-peer-dependencies
# - run: pnpm build
# - run: pnpm lint
# - run: pnpm prettier
# - run: pnpm test:cov

# - name: Update Coverage Badge
# if: github.ref == format('refs/heads/{0}', github.event.repository.default_branch)
# uses: we-cli/coverage-badge-action@main
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,4 @@ logs
# Misc
.DS_Store
.npmrc
coverage/
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@
"scripts": {
"test": "pnpm --filter @node-idempotency/* test",
"test:e2e": "pnpm --filter @node-idempotency/* test:e2e",
"lint": "eslint packages/**/*.ts",
"test:cov": "pnpm --filter @node-idempotency/* test:e2e --coverage --coverageReporters=\"json-summary\"",
"lint": "eslint -v",
"prettier": "prettier -c .",
"lint:fix": "eslint packages/**/*.ts --fix",
"format": "prettier --write .",
"build": "pnpm --filter @node-idempotency/* build",
Expand Down
2 changes: 1 addition & 1 deletion packages/plugin-express/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
"@node-idempotency/shared": "1.0.1",
"@node-idempotency/storage": "1.0.2",
"@node-idempotency/storage-adapter-memory": "1.0.1",
"express": "^4.19.1"
"express": "^4.19.2"
},
"devDependencies": {
"@types/express": "^4.17.21",
Expand Down
8 changes: 4 additions & 4 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit bf04255

Please sign in to comment.