Skip to content

feat: new a Webapp to show the QR Code #64

feat: new a Webapp to show the QR Code

feat: new a Webapp to show the QR Code #64

Workflow file for this run

name: CI
on:
workflow_dispatch:
pull_request:
branches-ignore:
- "gh-pages"
push:
branches: [main]
# tags: ["v*"]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
jobs:
Run-Tests:
name: CI
runs-on: ubuntu-latest
steps:
# https://github.com/japgolly/setup-everything-scala
- uses: actions/checkout@v3
with:
fetch-depth: 0 # Needed for the release tag // `git fetch --tags` will also work
- name: Setup Java and Scala
uses: olafurpg/setup-scala@v14
# - name: Setup Node
# uses: actions/setup-node@v2
# with:
# node-version: "16" # or whatever
# - name: Setup Scala.JS
# uses: japgolly/setup-scalajs@v1
- name: Cache sbt
uses: coursier/cache-action@v6.3
- name: Cache embedmongo
uses: actions/cache@v2
with:
path: ~/.embedmongo
key: ${{ runner.os }}-embedmongo-4.7.0
restore-keys: |
${{ runner.os }}-embedmongo-4.7.0
### Compile and TESTS ###
- run: sbt -mem 2048 -J-Xmx5120m "test"
# env:
# NODE_OPTIONS: "--openssl-legacy-provider"