Skip to content

Commit

Permalink
Setup GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
bkeepers committed Oct 13, 2023
1 parent 82e357d commit 645eeb6
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: CI
on: [push, pull_request]
jobs:
setup:
name: Setup
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
cache: yarn
- run: yarn install
lint:
name: Lint
runs-on: ubuntu-latest
needs: setup
steps:
- run: yarn lint
test:
name: Lint
runs-on: ubuntu-latest
needs: setup
steps:
- run: yarn test

0 comments on commit 645eeb6

Please sign in to comment.