Skip to content

Commit

Permalink
Add GH Action for checking code
Browse files Browse the repository at this point in the history
Answering the Q: "Is my code buildable?"
  • Loading branch information
alexbaumgertner committed Dec 18, 2023
1 parent 9626786 commit c5a8a9c
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/check-code-on-pr-to-main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs

name: Check Code

on:
pull_request:
branches: [ "main" ]

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Node Setup
uses: actions/setup-node@v3
with:
node-version: '20'

- name: Install dependencies
run: npm install

- name: Lint
run: npm run lint

- name: Build
run: npm run build

0 comments on commit c5a8a9c

Please sign in to comment.