Skip to content

Commit

Permalink
Merge pull request #655 from madeindjs/WF-72
Browse files Browse the repository at this point in the history
chore(ui): improve hash parsing + setup unit test - WF-72
  • Loading branch information
ramedina86 authored Nov 29, 2024
2 parents 8844684 + 32a55fb commit 66eaa60
Show file tree
Hide file tree
Showing 5 changed files with 521 additions and 54 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/ci-ui-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: ci-ui-test
on:
push:
branches: [dev, master]
paths: ["src/ui/**"]
pull_request:
branches: [dev, master]
paths: ["src/ui/**"]

jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: "20.x"
cache: npm

- name: Install dependencies
run: npm ci -w writer-ui

- name: Run tests
run: npm test -w writer-ui
Loading

0 comments on commit 66eaa60

Please sign in to comment.