Skip to content

Commit

Permalink
added back build-js task
Browse files Browse the repository at this point in the history
  • Loading branch information
oveddan committed Nov 13, 2023
1 parent 06c2fff commit 8566f53
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/js.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: JS

on:
push:
branches:
- main

concurrency: ${{ github.workflow }}-${{ github.ref }}

jobs:
build_js:
strategy:
fail-fast: true

name: Build js package
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Install node deps and founry
uses: ./.github/actions/setup_deps

- name: Build js package
run: |
npx turbo run build

0 comments on commit 8566f53

Please sign in to comment.