Skip to content

Deploy GitHub Actions workflow #14

Deploy GitHub Actions workflow

Deploy GitHub Actions workflow #14

Workflow file for this run

name: Build Check
on: [pull_request, workflow_dispatch, workflow_call]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Git repository
uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 18
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
cache: 'yarn'
- name: Install Dependencies
run: yarn install
- name: Build Synectic
run: yarn build
# Add test steps here