From 8df08bd36e4ee57ae13c63f8d875965db90b71b2 Mon Sep 17 00:00:00 2001 From: Ritesh Patil Date: Tue, 15 Dec 2020 00:48:01 +0530 Subject: [PATCH] Integrating with FeaturePeek --- .github/workflows/featurepeek.yml | 17 +++++++++++++++++ peek.yml | 5 +++++ 2 files changed, 22 insertions(+) create mode 100644 .github/workflows/featurepeek.yml create mode 100644 peek.yml diff --git a/.github/workflows/featurepeek.yml b/.github/workflows/featurepeek.yml new file mode 100644 index 0000000..836566a --- /dev/null +++ b/.github/workflows/featurepeek.yml @@ -0,0 +1,17 @@ +name: Build and ping FeaturePeek +on: push +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Use node 12.x + uses: actions/setup-node@v1 + with: + node-version: 12.x + - name: Install dependencies + run: yarn install + - name: Build + run: npm run build + - name: Ping FeaturePeek + run: bash <(curl -s https://peek.run/ci) \ No newline at end of file diff --git a/peek.yml b/peek.yml new file mode 100644 index 0000000..864b7fb --- /dev/null +++ b/peek.yml @@ -0,0 +1,5 @@ +version: 2 +main: + type: static + path: /build + spa: false \ No newline at end of file