Skip to content

Commit

Permalink
Adds GH workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Enngage committed Oct 8, 2024
1 parent 07ab957 commit 30c09cc
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 99 deletions.
3 changes: 2 additions & 1 deletion .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# Users referenced in this file will automatically be requested as reviewers for PRs that modify the given paths.

# See https://help.github.com/articles/about-code-owners/

* @kontent-ai/javascript-maintainers
- @Enngage @kontent-ai/javascript-maintainers
34 changes: 0 additions & 34 deletions .github/ISSUE_TEMPLATE/bug_report.md

This file was deleted.

17 changes: 0 additions & 17 deletions .github/ISSUE_TEMPLATE/feature_request.md

This file was deleted.

13 changes: 0 additions & 13 deletions .github/ISSUE_TEMPLATE/question.md

This file was deleted.

17 changes: 0 additions & 17 deletions .github/ISSUE_TEMPLATE/spike.md

This file was deleted.

17 changes: 0 additions & 17 deletions .github/PULL_REQUEST_TEMPLATE.md

This file was deleted.

19 changes: 19 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Lint & Build

on:
push:
branches: [main]
pull_request:

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js from .nvmrc file
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- run: npm ci
- run: npm run lint
- run: npm run build

0 comments on commit 30c09cc

Please sign in to comment.