Skip to content

Commit 78cb449

Browse files
author
Arijus Šukys
authoredJun 16, 2022
web-console: add github action to build web-console (#11)
* add github action * temp comment of paths * intetional error to test github action * no need for `actions/cache` as it's integrated in `actions/setup-node` * do not double check cache * Revert "intetional error to test github action" This reverts commit 903a274. * run workflow only for changes in `packages/web-console/**`
1 parent bf1fbdb commit 78cb449

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed
 

‎.github/workflows/web-console.yml

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: web-console
2+
3+
on:
4+
push:
5+
paths:
6+
- packages/web-console/**
7+
branches-ignore:
8+
- main
9+
- refs/tags/*
10+
11+
jobs:
12+
build:
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
- uses: actions/checkout@v3
17+
- uses: actions/setup-node@v3
18+
with:
19+
node-version: '16.13.1'
20+
cache: 'yarn'
21+
22+
- name: Install dependencies
23+
run: yarn install --immutable --immutable-cache
24+
25+
- name: build
26+
run: yarn workspace @questdb/web-console run build

0 commit comments

Comments
 (0)
Failed to load comments.