Skip to content

Add new pipeline workflow #1

Add new pipeline workflow

Add new pipeline workflow #1

Workflow file for this run

name: Deployment pipeline
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install dependencies
run: npm install
- name: Linter
run: npm run lint