From ec40671b16b858d5e69beb1ef7896eaccdf63370 Mon Sep 17 00:00:00 2001 From: Michal Zielenkiewicz Date: Mon, 27 Nov 2023 07:55:49 +0100 Subject: [PATCH 1/2] Setup build workflow --- .github/workflows/ci-build.yml | 42 ++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 .github/workflows/ci-build.yml diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml new file mode 100644 index 0000000..f46cb01 --- /dev/null +++ b/.github/workflows/ci-build.yml @@ -0,0 +1,42 @@ +# NOTE: This name appears in GitHub's Checks API and in workflow's status badge. +name: ci-build + +# Trigger the workflow when: +on: + # A push occurs to one of the matched branches. + push: + branches: [master] + # Or when a pull request event occurs for a pull request against one of the + # matched branches. + pull_request: + branches: [master] + +jobs: + build: + # NOTE: This name appears in GitHub's Checks API. + name: build + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v4 + - name: Set up Node.js 20 + uses: actions/setup-node@v4 + with: + node-version: '20.x' + cache: yarn + - name: Install dependencies + run: yarn install --frozen-lockfile + - name: Set workflow variables + # Id is needed to access output in a next step. + id: vars + run: | + echo "SHORT_SHA=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT + - name: Build app + run: yarn build + - name: Upload build artifacts + # Upload build artifacts on push event. + if: github.event_name == 'push' + uses: actions/upload-artifact@v3 + with: + name: oasis-dapp-wrose-${{ steps.vars.outputs.SHORT_SHA }} + path: build From d5e6fd4f70609b27267f951350bc2fb757b98e00 Mon Sep 17 00:00:00 2001 From: Michal Zielenkiewicz Date: Mon, 27 Nov 2023 13:10:05 +0100 Subject: [PATCH 2/2] Enable status badges --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index fac6e0e..1c74204 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,11 @@ # ROSE (un)wrapper +[![CI build status][github-ci-build-badge]][github-ci-build-link] +[![CI lint status][github-ci-lint-badge]][github-ci-lint-link] + A dApp that lets you wrap or unwrap ROSE on an Oasis EVM-compatible ParaTime. + +[github-ci-build-badge]: https://github.com/oasisprotocol/dapp-wrose/actions/workflows/ci-build.yml/badge.svg +[github-ci-build-link]: https://github.com/oasisprotocol/dapp-wrose/actions?query=workflow:ci-build+branch:master +[github-ci-lint-badge]: https://github.com/oasisprotocol/dapp-wrose/actions/workflows/ci-lint.yml/badge.svg +[github-ci-lint-link]: https://github.com/oasisprotocol/dapp-wrose/actions?query=workflow:ci-lint+branch:master