Skip to content

Commit

Permalink
chore: add check worfklow
Browse files Browse the repository at this point in the history
  • Loading branch information
prisca-c committed Jul 19, 2024
1 parent 52c5e05 commit 6fa4344
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/checks.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Checks

on: [push, pull_request]

jobs:
check:
runs-on: ubuntu-latest
environment: dev
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20.12.1

- name: Install Yarn
run: npm install -g yarn

- name: Install Dependencies
run: yarn install

- name: Run Lint
run: yarn lint

- name: Build
run: yarn build

0 comments on commit 6fa4344

Please sign in to comment.