Skip to content

Commit

Permalink
feat: github checks
Browse files Browse the repository at this point in the history
  • Loading branch information
AustinWoetzel committed Oct 7, 2023
1 parent 560c51e commit fac2667
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions .github/workflows/javascript.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: Tests, Typecheck, Eslint

on: [push]

jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Node Version
uses: actions/setup-node@v3
with:
node-version: 18.16.0
cache: yarn
- name: Install Dependencies
run: yarn install --frozen-lockfile
- name: Test
run: yarn test
typecheck:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Node Version
uses: actions/setup-node@v3
with:
node-version: 18.16.0
cache: yarn
- name: Install Dependencies
run: yarn install --frozen-lockfile
- name: Type-Check
run: yarn typecheck
eslint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Node Version
uses: actions/setup-node@v3
with:
node-version: 18.16.0
cache: yarn
- name: Install Dependencies
run: yarn install --frozen-lockfile
- name: Eslint-Check
run: yarn lint

0 comments on commit fac2667

Please sign in to comment.