Skip to content

Commit

Permalink
add simple ci workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
spearwolf committed Jun 19, 2023
1 parent 65f28f8 commit dd26bd4
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Build and Test

on:
push:
branches: [ "main" ]

jobs:
ci:
name: Lint, Build and Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- uses: actions/setup-node@v3
with:
node-version: 18
cache: 'npm'

- run: npm ci
name: Install dependencies

- run: npm run ci
name: Run all checks

0 comments on commit dd26bd4

Please sign in to comment.