Skip to content

Commit

Permalink
ci: Create seperate dev workflow checks
Browse files Browse the repository at this point in the history
  • Loading branch information
edmundmiller committed Nov 14, 2022
1 parent 00760d0 commit 344d109
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 2 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,6 @@ jobs:
cache: 'npm'
- run: npm ci
- run: npm run build
- run: npm run format:check
- run: npm run lint
- run: npm run package
- uses: ./
with:
Expand Down
22 changes: 22 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Run tests

on:
push:
pull_request:
workflow_dispatch:

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
cache: 'npm'
- run: npm ci
- run: npm run build
- run: npm run format:check
- run: npm run lint
- run: npm run package
- run: npm run test

0 comments on commit 344d109

Please sign in to comment.