Skip to content

Commit

Permalink
Merge pull request #2 from CambioML/jojo-branch
Browse files Browse the repository at this point in the history
add build checks
  • Loading branch information
Cambio ML authored Jan 23, 2024
2 parents f4d366b + 52a9b10 commit d308cc0
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/build-checks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: Build Checks

on:
push:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout Repository
uses: actions/checkout@v2

- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: 14

- name: Install Dependencies
run: npm install

- name: Build
run: npm run build

lint:
runs-on: ubuntu-latest

steps:
- name: Checkout Repository
uses: actions/checkout@v2

- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: 14

- name: Install Dependencies
run: npm install

- name: Lint Code
run: npm run lint

0 comments on commit d308cc0

Please sign in to comment.