Skip to content

build(deps): bump is-typed-array from 1.1.10 to 1.1.12 #1254

build(deps): bump is-typed-array from 1.1.10 to 1.1.12

build(deps): bump is-typed-array from 1.1.10 to 1.1.12 #1254

Workflow file for this run

name: CI
on: [push]
permissions:
contents: write
jobs:
stylelint:
runs-on: ubuntu-latest
steps:
- name: checkout repository
uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version-file: ".tool-versions"
cache: "yarn"
- name: yarn
run: yarn --frozen-lockfile
- name: stylelint
run: yarn lint-style
eslint:
runs-on: ubuntu-latest
steps:
- name: checkout repository
uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version-file: ".tool-versions"
cache: "yarn"
- name: yarn
run: yarn --frozen-lockfile
- name: lint
run: yarn lint-eslint
prettier:
runs-on: ubuntu-latest
steps:
- name: checkout repository
uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version-file: ".tool-versions"
cache: "yarn"
- name: yarn
run: yarn --frozen-lockfile
- name: prettier
run: yarn lint-prettier
jest:
runs-on: ubuntu-latest
steps:
- name: checkout repository
uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version-file: ".tool-versions"
cache: "yarn"
- name: yarn
run: yarn --frozen-lockfile
- name: test
run: yarn test --coverage
build:
runs-on: ubuntu-latest
if: github.ref != 'refs/heads/main' # Building is also part of the deployment action
steps:
- name: checkout repository
uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version-file: ".tool-versions"
cache: "yarn"
- name: yarn
run: yarn --frozen-lockfile
- name: build
run: yarn build
deploy:
runs-on: ubuntu-latest
needs:
- stylelint
- eslint
- prettier
- jest
if: success() && github.ref == 'refs/heads/main'
steps:
- name: checkout repository
uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version-file: ".tool-versions"
cache: "yarn"
- name: yarn
run: yarn --frozen-lockfile
- name: Build Storybook
run: yarn build
- name: Deploy Storybook
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./storybook-static