Skip to content

580-feat: Dedicated mentorship page #955

580-feat: Dedicated mentorship page

580-feat: Dedicated mentorship page #955

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