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:
- add-github-actions
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
# Number of commits to fetch. 0 indicates all history for all branches and tags.
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: yarn install
- name: Lint
run: yarn lint