diff --git a/.github/workflows/web-console.yml b/.github/workflows/web-console.yml new file mode 100644 index 000000000..f3fdddb0b --- /dev/null +++ b/.github/workflows/web-console.yml @@ -0,0 +1,26 @@ +name: web-console + +on: + push: + paths: + - packages/web-console/** + branches-ignore: + - main + - refs/tags/* + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 + with: + node-version: '16.13.1' + cache: 'yarn' + + - name: Install dependencies + run: yarn install --immutable --immutable-cache + + - name: build + run: yarn workspace @questdb/web-console run build