Skip to content

Updated scala dependencies #937

Updated scala dependencies

Updated scala dependencies #937

Workflow file for this run

name: dev
on:
workflow_dispatch:
pull_request:
branches: [master]
push:
branches: [master, 'branch-*']
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: coursier/setup-action@v1
with:
jvm: temurin:1.17
apps: sbt
- uses: coursier/cache-action@v6
- uses: actions/setup-node@v4
with:
node-version: "20.14.0"
registry-url: "https://registry.npmjs.org"
- name: Cache ~/.npm
uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install
run: npm ci
- name: Build
run: npm run build
- name: Tests
run: npm run test:ci
- name: Build - Example App
working-directory: ./example
run: |
npm ci
npm run build
- name: Selenium Test
run: sbt -Dprod.publish=true -DgenerateStoryReport=true -DRTM_PATH=./RTM -DOUTPUT_FILE=/testStoryMapping.txt clean test
- name: Generate RTM
if: always()
continue-on-error: true
run: |
sh rtm.sh
- name: Upload RTM
if: always()
continue-on-error: true
uses: actions/upload-artifact@v4
with:
name: RTM
path: ./RTM
- name: Upload Coverage
if: always()
continue-on-error: true
uses: actions/upload-artifact@v4
with:
name: Coverage
path: ./coverage
- name: Notify slack
if: never()

Check failure on line 75 in .github/workflows/dev.yml

View workflow run for this annotation

GitHub Actions / dev

Invalid workflow file

The workflow is not valid. .github/workflows/dev.yml (Line: 75, Col: 13): Unrecognized function: 'never'. Located at position 1 within expression: never()
continue-on-error: true
uses: kpritam/slack-job-status-action@v1
with:
job-status: ${{ job.status }}
slack-bot-token: ${{ secrets.SLACK_BOT_TOKEN }}
channel: ci-dev