diff --git a/.github/workflows/run-scripts.yml b/.github/workflows/run-scripts.yml new file mode 100644 index 0000000..e09cea8 --- /dev/null +++ b/.github/workflows/run-scripts.yml @@ -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