Skip to content

build: add pipelines #3

build: add pipelines

build: add pipelines #3

Workflow file for this run

name: CI
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
# Disable lint check temporary before we fix all the lint issues
# - name: Lint
# run: npm run lint
- name: Run tests
run: npm run test