Skip to content

Commit

Permalink
add setup workflow job
Browse files Browse the repository at this point in the history
  • Loading branch information
petar-i-todorov committed Feb 17, 2024
1 parent e8a23d7 commit 3e54da2
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,26 @@ on:
- main

jobs:
setup:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3

- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 20

- name: Install dependencies
run: npm install

- name: Lint code
run: npm run lint

- name: Typecheck code
run: npm run typecheck

deploy:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 3e54da2

Please sign in to comment.