Skip to content

1. Alt parser

1. Alt parser #278

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
paths-ignore:
- 'dbml-homepage/**'
pull_request:
branches: [ master ]
types: [opened, synchronize]
paths-ignore:
- 'dbml-homepage/**'
jobs:
build:
runs-on: ubuntu-22.04
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Build packages
run: yarn build
- name: Run unit tests
run: yarn test