diff options
| author | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2022-04-04 12:45:56 +0200 |
|---|---|---|
| committer | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2022-04-05 13:46:33 +0200 |
| commit | de5b2f7f9178b87ccb941201a5ddba9921cb2fa2 (patch) | |
| tree | e1390efa4a0c7939a73ef655617bff69c09e01f8 /.github/workflows/build.yml | |
| parent | 6d67cabc6fd3d59982a9501fad08b8e06a2e2d5b (diff) | |
ci(web/ui): Build web UI via Gradle
This change updates the GitHub Actions pipeline to build the web UI via
Gradle instead of using Node.js directly.
Diffstat (limited to '.github/workflows/build.yml')
| -rw-r--r-- | .github/workflows/build.yml | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index bc30d584..9ed5db16 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -56,26 +56,3 @@ jobs: with: token: ${{ secrets.CODECOV_TOKEN }} files: ./build/reports/jacoco/codeCoverageReport/codeCoverageReport.xml - build-ui: - name: Build UI (Node ${{ matrix.node }}) - runs-on: ${{ matrix.os }} - strategy: - matrix: - os: [ubuntu-latest] - node: [16] - defaults: - run: - working-directory: opendc-web/opendc-web-ui - steps: - - uses: actions/checkout@v3 - - name: Set up Node.js - uses: actions/setup-node@v3 - with: - node-version: ${{ matrix.node }} - - run: yarn install --frozen-lockfile - - run: yarn build - env: - CI: true - - run: yarn next lint - env: - CI: true |
