Skip to content

Commit

Permalink
Add build workflow
Browse files Browse the repository at this point in the history
This adds a github actions workflow that tries to build
project using yarn.
  • Loading branch information
oversize committed Apr 10, 2024
1 parent aad4baf commit 592832c
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/yarn-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: "Yarn Build"

on:
push:
branches:
- 'develop/**'

jobs:
build:
name: Build documentation
# runs-on: arc-runner-set
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: bahmutov/npm-install@v1
with:
useLockFile: false
- run: yarn install
- run: yarn build

0 comments on commit 592832c

Please sign in to comment.