Skip to content

Commit

Permalink
Chore: github actions for run specs
Browse files Browse the repository at this point in the history
  • Loading branch information
victor-0x29a committed Jul 12, 2024
1 parent 1e03398 commit 0b707e3
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/dev-specs.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: CI-Specs

on: [push, pull_request]

jobs:
specs-dev:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22

- name: Install dependencies
run: npm install

- name: Run specs
run: npm run test

0 comments on commit 0b707e3

Please sign in to comment.