Skip to content

Commit

Permalink
Merge pull request #2 from ivanzusko/add-workflow
Browse files Browse the repository at this point in the history
Add workflow to checks the scripts
  • Loading branch information
ivanzusko authored Oct 9, 2024
2 parents 07d04af + 23b29bd commit fcc5036
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/run-scripts.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Run scripts

on: [push]

jobs:
Verify-all-scripts-work:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Install dependencies
run: npm ci
- name: lint
run: |
npm run lint
- name: test
run: |
npm run test
- name: "test:cov"
run: |
npm run test:cov
- name: build
run: |
npm run build

0 comments on commit fcc5036

Please sign in to comment.