Skip to content

Commit

Permalink
updated ci
Browse files Browse the repository at this point in the history
  • Loading branch information
ambrazasp committed Aug 24, 2023
1 parent d6e571a commit 5f75e16
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
Expand Up @@ -37,3 +37,26 @@ jobs:
sarif_file: eslint-results.sarif
wait-for-processing: true
category: ESLint

validate:
name: Validate build & test
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v3

- name: Set up Node
uses: actions/setup-node@v3
with:
node-version-file: package.json
cache: npm

- name: Install dependencies
run: npm i --silent

- name: Build
run: npm run build

- name: Test
run: npm run test

0 comments on commit 5f75e16

Please sign in to comment.