Skip to content

Bump rollup from 4.16.2 to 4.16.4 in /frontend #4625

Bump rollup from 4.16.2 to 4.16.4 in /frontend

Bump rollup from 4.16.2 to 4.16.4 in /frontend #4625

Workflow file for this run

name: CI
on:
push:
branches: 'demo/akka-http-svlete'
pull_request:
branches: 'demo/akka-http-svlete'
jobs:
build_n_test:
runs-on: ubuntu-latest
steps:
- name: 'Checkout repository'
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: 'Set up JDK 1.8'
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: 'Coursier cache'
uses: coursier/cache-action@v5
with:
extraKey: ${{ runner.os }}-coursier-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }}
- name: 'Compile'
run: 'sbt -J-Dscalafix.disable=true compile'
- name: 'Check code quality' # TODO: Separate job
run: |
sbt ';warn ;scalafixAll -check ;scalafmtCheckAll'
- name: 'Set up Node'
uses: actions/setup-node@v1
with:
node-version: '18'
- name: 'Build TypeScript'
run: |
cd frontend
yarn install --frozen-lockfile
yarn build
echo "TODO: npm run test"