remove disableBackgroundScroll from storybook #607
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
name: CI Tests | |
on: push | |
jobs: | |
lint-design-system: | |
name: Lint design-system package | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: packages/design-system | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node 14 | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 14.x | |
registry-url: https://registry.npmjs.org | |
scope: "@recidiviz" | |
- name: Yarn install with cache | |
uses: bahmutov/npm-install@v1 | |
with: | |
working-directory: packages/design-system | |
install-command: yarn --frozen-lockfile | |
- name: Yarn lint | |
run: yarn lint | |
# We want to make sure we're always able to build our artifacts. | |
build-design-system: | |
name: Build design-system package | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: packages/design-system | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node 14 | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 14.x | |
registry-url: https://registry.npmjs.org | |
scope: "@recidiviz" | |
- name: Yarn install with cache | |
uses: bahmutov/npm-install@v1 | |
with: | |
working-directory: packages/design-system | |
install-command: yarn --frozen-lockfile | |
- name: Yarn build | |
run: yarn build | |
build-auth: | |
name: Build auth package | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: packages/auth | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node 14 | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 14.x | |
registry-url: https://registry.npmjs.org | |
scope: "@recidiviz" | |
- name: Yarn install with cache | |
uses: bahmutov/npm-install@v1 | |
with: | |
working-directory: packages/auth | |
install-command: yarn --frozen-lockfile | |
- name: Yarn build | |
run: yarn build | |
lint-auth: | |
name: Lint auth package | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: packages/auth | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node 14 | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 14.x | |
registry-url: https://registry.npmjs.org | |
scope: "@recidiviz" | |
- name: Yarn install with cache | |
uses: bahmutov/npm-install@v1 | |
with: | |
working-directory: packages/auth | |
install-command: yarn --frozen-lockfile | |
- name: Yarn lint | |
run: yarn lint | |
test-auth: | |
name: Test auth package | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: packages/auth | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node 14 | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 14.x | |
registry-url: https://registry.npmjs.org | |
scope: "@recidiviz" | |
- name: Yarn install with cache | |
uses: bahmutov/npm-install@v1 | |
with: | |
working-directory: packages/auth | |
install-command: yarn --frozen-lockfile | |
- name: Yarn test | |
run: yarn test |