Skip to content

Commit

Permalink
add build check github action
Browse files Browse the repository at this point in the history
  • Loading branch information
atahankilc committed Nov 5, 2024
1 parent 8b68ab2 commit e1f99f8
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/build-check.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Build Check

on:
pull_request:
branches:
- main
- develop
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20'

- name: Install Dependencies
working-directory: ./theia-ai-exerciser
run: yarn install

- name: Build Theia AI Exerciser
working-directory: ./theia-ai-exerciser
run: yarn build
1 change: 1 addition & 0 deletions theia-ai-exerciser/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"theia-extension"
],
"version": "0.0.0",
"license": "MIT",
"files": [
"lib",
"src"
Expand Down

0 comments on commit e1f99f8

Please sign in to comment.