Skip to content

Commit

Permalink
Merge pull request #3 from quatico-solutions/feature/continuous-build…
Browse files Browse the repository at this point in the history
…-multi-pipeline

E: adds 'continuous-build-multi' pipeline
  • Loading branch information
jwloka authored Apr 4, 2024
2 parents 095fa14 + 055d042 commit 0baf6e0
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 3 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/continuous-build-multi.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Continous Build Multi (Branch Lint, Build, Test)

on:
pull_request:
paths-ignore:
- '**.md'
- '**.txt'
workflow_dispatch:

jobs:
build-lint-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
- uses: pnpm/action-setup@v3
with:
version: 8
- run: pnpm install --frozen-lockfile
- run: pnpm lint
- run: pnpm test
- run: pnpm build
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# dependencies
node_modules
.npmrc

# testing
coverage
Expand Down
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
registry=https://registry.npmjs.org
4 changes: 2 additions & 2 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 0baf6e0

Please sign in to comment.