Skip to content

Feat/552 rs app courses integration #965

Feat/552 rs app courses integration

Feat/552 rs app courses integration #965

Workflow file for this run

name: Pull Request
on:
pull_request:
types: [opened, synchronize]
branches:
- main
env:
NODE_VERSION: 20.x
jobs:
ci:
name: CI
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
- uses: bahmutov/npm-install@v1
- name: Lint Application
run: npm run lint
- name: Style lint Application
run: npm run stylelint
- name: Run application tests
run: npm run test
- name: Build
run: npm run build
env:
API_URL: ${{ secrets.API_URL }}