Skip to content

chore(deps): update dependency remix-development-tools to v4.6.0 #1054

chore(deps): update dependency remix-development-tools to v4.6.0

chore(deps): update dependency remix-development-tools to v4.6.0 #1054

Workflow file for this run

name: Main CI
on:
pull_request:
branches:
- main
jobs:
build-test:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Setup | Checkout
uses: actions/[email protected]
- name: Setup | Node.js
uses: re-taro/actions/[email protected]
with:
node-version-file: .nvmrc
- name: Run | Build
run: pnpm run build
lint-test:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Setup | Checkout
uses: actions/[email protected]
- name: Setup | Node.js
uses: re-taro/actions/[email protected]
with:
node-version-file: .nvmrc
- name: Run | ESLint
run: pnpm run lint:eslint
type-test:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Setup | Checkout
uses: actions/[email protected]
- name: Setup | Node.js
uses: re-taro/actions/[email protected]
with:
node-version-file: .nvmrc
- name: Setup | Build
run: pnpm build
- name: Run | tsc
run: pnpm run lint:tsc
unit-test:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Setup | Checkout
uses: actions/[email protected]
- name: Setup | Node.js
uses: re-taro/actions/[email protected]
with:
node-version-file: .nvmrc
- name: Test | Unit
run: pnpm run test:unit
integration-test:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Setup | Checkout
uses: actions/[email protected]
- name: Setup | Node.js
uses: re-taro/actions/[email protected]
with:
node-version-file: .nvmrc
- name: Setup | Playwright
uses: ./.github/actions/setup-playwright
- name: Setup | Build
run: pnpm build
- name: Test | Integration
run: |
pnpm concurrently -k -s first -n "APP,TEST" -c "magenta,blue" \
"pnpm start" \
"pnpm wait-on http://127.0.0.1:8788 && pnpm test:integration"
storybook-test:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Setup | Checkout
uses: actions/[email protected]
- name: Setup | Node.js
uses: re-taro/actions/[email protected]
with:
node-version-file: .nvmrc
- name: Setup | Playwright
uses: ./.github/actions/setup-playwright
- name: Build | Storybook
run: pnpm run build-storybook --test
- name: Test | Storybook
run: |
pnpm concurrently -k -s first -n "SB,TEST" -c "magenta,blue" \
"pnpm sirv storybook-static --host 127.0.0.1 --port 6006 --quiet" \
"pnpm wait-on http://127.0.0.1:6006 && pnpm test:storybook"