Skip to content

Merge pull request #63 from andrerom/patch-1 #86

Merge pull request #63 from andrerom/patch-1

Merge pull request #63 from andrerom/patch-1 #86

Workflow file for this run

name: CI
on:
push:
branches: ['main']
pull_request:
types: [opened, synchronize]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
- name: Install
run: npm install
- name: Lint
run: npm run lint
- name: Build
run: npm run build
- name: Integration Tests
run: cd test && npm install && npm test