Skip to content

Merge pull request #6 from CambioML/goldmermaid-patch-1 #12

Merge pull request #6 from CambioML/goldmermaid-patch-1

Merge pull request #6 from CambioML/goldmermaid-patch-1 #12

Workflow file for this run

name: Build Checks
on:
push:
branches: [ "main" ]
pull_request:
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: 18
- 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: 18
- name: Install Dependencies
run: npm install
- name: Lint Code
run: npm run lint