Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a CI/CD Pipeline using Pipelinit #10

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions .github/workflows/pipelinit.javascript.format.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Generated with pipelinit 0.2.2
# https://pipelinit.com/
name: Format JavaScript
on:
pull_request:
paths:
- '**.js'
- '**.ts'
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '16'
cache: 'yarn'
- run: yarn
- run: npx prettier --no-error-on-unmatched-pattern --check "**/*.js" "**/*.ts"

30 changes: 30 additions & 0 deletions .github/workflows/pipelinit.javascript.lint.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Generated with pipelinit 0.2.2
# https://pipelinit.com/
name: Lint JavaScript
on:
pull_request:
paths:
- '**.js'
- '**.ts'
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '16'
cache: 'yarn'
- run: yarn
- run: npx eslint --ext .js --ext .ts .
tsc:
name: Typecheck Typescript
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '16'
cache: 'yarn'
- run: yarn
- run: NPM_CONFIG_YES=true npx -p typescript -c 'tsc --init && tsc --noEmit'
18 changes: 18 additions & 0 deletions .github/workflows/pipelinit.javascript.sast.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated with pipelinit 0.2.2
# https://pipelinit.com/
name: SAST
on:
pull_request:
paths:
- '**.js'
- '**.ts'
jobs:
semgrep:
name: Scan
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: returntocorp/semgrep-action@v1
with:
config: >-
p/ci