build(deps-dev): bump style-loader from 3.3.4 to 4.0.0 #12189
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
name: test build | |
on: | |
pull_request | |
jobs: | |
build_project_app: | |
name: Build NextJS project app | |
runs-on: ubuntu-latest | |
env: | |
APP_ENV: production | |
NODE_ENV: production | |
PANOPTES_ENV: production | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js 20 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 'lts/iron' | |
cache: 'yarn' | |
- run: yarn install --production=false --frozen-lockfile --ignore-scripts | |
- run: yarn workspace @zooniverse/react-components build:es6 | |
- run: yarn workspace @zooniverse/classifier build:es6 | |
- run: yarn workspace @zooniverse/fe-project build | |
build_root_app: | |
name: Build NextJS root app | |
runs-on: ubuntu-latest | |
env: | |
APP_ENV: production | |
NODE_ENV: production | |
PANOPTES_ENV: production | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js 20 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 'lts/iron' | |
cache: 'yarn' | |
- run: yarn install --production=false --frozen-lockfile --ignore-scripts | |
- run: yarn workspace @zooniverse/react-components build:es6 | |
- run: yarn workspace @zooniverse/content build:es6 | |
- run: yarn workspace @zooniverse/user build:es6 | |
- run: yarn workspace @zooniverse/subject-viewers build:es6 | |
- run: yarn workspace @zooniverse/classifier build:es6 | |
- run: yarn workspace @zooniverse/fe-root build | |
build_storybooks: | |
name: Build storybooks | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js 20 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 'lts/iron' | |
cache: 'yarn' | |
- run: yarn install --production=false --frozen-lockfile --ignore-scripts | |
- run: yarn workspace @zooniverse/react-components build:es6 | |
- run: yarn workspace @zooniverse/content build:es6 | |
- run: yarn workspace @zooniverse/user build:es6 | |
- run: yarn workspace @zooniverse/subject-viewers build:es6 | |
- run: yarn workspace @zooniverse/classifier build:es6 | |
- run: yarn deploy-storybook --dry-run |