Skip to content

Add ci to the project #3

Add ci to the project

Add ci to the project #3

Workflow file for this run

name: HackUPC recruiting page CI
defaults:
run:
working-directory: .
on:
pull_request:
branches: [master]
workflow_dispatch:
env:
DEBUG: 1
IMAGE_TAG: ${{ github.job }}-${{ github.sha }}
jobs:
lint:
name: πŸ¦„ Linter
runs-on: ubuntu-latest
steps:
- name: πŸ— Setup repo
uses: actions/checkout@v3
- name: πŸ— Setup Node
uses: actions/setup-node@v3
with:
node-version: 18.x
- name: πŸ“¦ Install dependencies
run: npm install
- name: πŸ¦„ Check format (prettier)
run: npm run check-format
- name: πŸ¦„ Check lint (eslint)
run: npm run check-lint