Skip to content

Commit

Permalink
Merge pull request #7 from flippercloud/github-actions
Browse files Browse the repository at this point in the history
Setup GitHub Actions
  • Loading branch information
bkeepers authored Oct 13, 2023
2 parents 82e357d + 3a58fdf commit 66b1b2b
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: CI
on: [push, pull_request]
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
cache: yarn
- run: yarn install
- run: yarn lint
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
cache: yarn
- run: yarn install
- run: yarn test

0 comments on commit 66b1b2b

Please sign in to comment.