Bump the development-dependencies group across 1 directory with 35 updates #499
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
percy: | |
runs-on: ubuntu-latest | |
permissions: | |
packages: read | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
persist-credentials: false | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: "18" | |
registry-url: https://npm.pkg.github.com/ | |
- name: Install | |
run: | | |
export NODE_OPTIONS="--max_old_space_size=4096" | |
npm install | |
npm install concurrently http-server wait-on | |
npx browserslist@latest --update-db | |
env: | |
# also other environment variable | |
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Run percy | |
run: | | |
export NODE_OPTIONS="--max_old_space_size=4096" | |
npx concurrently -k -s first -n "SB,TEST" -c "magenta,blue" \ | |
"npm run storybook -- --debug --no-open" \ | |
"echo \"Starting test\" && npx wait-on -l tcp:127.0.0.1:6006 && npm run percy" | |
env: | |
PERCY_TOKEN: ${{ secrets.PERCY_TOKEN }} |