commit 87c62865d3cf285b9939a4b845afeacbcbe8b645 parent 3dc4f61194eee68f6e69fe19ec6d8c6a3928b95c Author: MTRNord <mtrnord1@gmail.com> Date: Fri, 5 May 2023 14:53:03 +0200 Add percy CI Diffstat:
| A | .github/workflows/percy.yaml | | | 18 | ++++++++++++++++++ |
1 file changed, 18 insertions(+), 0 deletions(-)
diff --git a/.github/workflows/percy.yaml b/.github/workflows/percy.yaml @@ -0,0 +1,18 @@ +on: + push: + branches: + - main + +jobs: + percy: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 + with: + node-version: '18' + - run: npm install + - run: percy storybook:start --port=9009 --static-dir=./public --verbose + env: + PERCY_TOKEN: ${{ secrets.PERCY_TOKEN }}