Skip to content

[CI] Create pipelines for changing information #2

[CI] Create pipelines for changing information

[CI] Create pipelines for changing information #2

Workflow file for this run

name: πŸ‘©πŸ»β€πŸ’»πŸŒ Portfolio CI
defaults:
run:
working-directory: .
on:
pull_request:
paths:
- "**"
branches: [main]
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