39 lines
572 B
YAML
Raw Normal View History

2022-12-01 12:44:36 -05:00
name: Build
2022-12-01 12:42:47 -05:00
on:
push:
branches: [ "main" ]
paths:
2022-12-01 12:47:22 -05:00
- core/**
2022-12-01 12:42:47 -05:00
pull_request:
branches: [ "main" ]
paths:
2022-12-01 12:47:22 -05:00
- core/**
2022-12-01 12:42:47 -05:00
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v3
2022-12-01 12:47:22 -05:00
- name: Setup Node
2022-12-01 12:42:47 -05:00
uses: actions/setup-node@v3
with:
2022-12-01 12:47:22 -05:00
cache: yarn
node-version: 16
2022-12-01 12:42:47 -05:00
2022-12-01 12:47:22 -05:00
- name: Install
working-directory: ./core
2022-12-01 12:42:47 -05:00
run: |
npm ci
- name: Build
2022-12-01 12:47:22 -05:00
working-directory: ./core
2022-12-01 12:42:47 -05:00
run: |
npm run build