Skip to content

Merge pull request #3 from ranaclyde/add-github-actions #7

Merge pull request #3 from ranaclyde/add-github-actions

Merge pull request #3 from ranaclyde/add-github-actions #7

Workflow file for this run

name: Deployment Pipeline
on:
push:
branches: [main]
pull_request:
branches: [main]
types: [opened, synchronize]
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 ci
- name: Lint
run: yarn lint
- name: Test
run: yarn test