Add new resolutions for RUM #117
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- master | |
- main | |
pull_request: | |
branches: | |
- master | |
- main | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- run: echo "This job was automatically triggered by a ${{github.event_name}} event." | |
- run: echo "This job is running on a ${{runner.os}} server" | |
- uses: actions/checkout@v3 | |
- name: Setup Node.js environment | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: 'yarn' | |
cache-dependency-path: sap-alm-dp-api-datasource/yarn.lock | |
- name: REUSE Compliance Check | |
uses: fsfe/[email protected] | |
- name: Install Dependencies | |
run: cd sap-alm-dp-api-datasource && yarn install --immutable --prefer-offline | |
- name: Check types | |
run: cd sap-alm-dp-api-datasource && yarn typecheck | |
- name: Lint | |
run: cd sap-alm-dp-api-datasource && yarn lint | |
- name: Unit tests | |
run: cd sap-alm-dp-api-datasource && yarn test:ci | |
- name: Build Frontend | |
run: cd sap-alm-dp-api-datasource && yarn build | |
# - name: Start grafana docker | |
# run: cd sap-alm-dp-api-datasource && yarn server -d | |
# | |
# - name: Run e2e tests | |
# run: cd sap-alm-dp-api-datasource && yarn e2e | |
# | |
# - name: Stop grafana docker | |
# run: docker-compose down | |