Skip to content

Commit

Permalink
Init Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
mcayuelas-ledger committed Aug 22, 2023
1 parent e10c6ec commit 75711cf
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 43 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Code Checks

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
deploy:
name: Code checks
runs-on: ubuntu-latest
steps:
- name: Checkout project
uses: actions/checkout@v3

- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 18.x

- name: Install dependencies
run: yarn install --immutable --immutable-cache --check-cache --frozen-lockfile

- name: Run tests
run: yarn test

- name: Run linter
run: yarn lint

- name: Run typescript
run: npx tsc

43 changes: 0 additions & 43 deletions .github/workflows/deploy.yml

This file was deleted.

0 comments on commit 75711cf

Please sign in to comment.