Skip to content

fix: do not force display as table-row #4

fix: do not force display as table-row

fix: do not force display as table-row #4

Workflow file for this run

name: Main
on:
push:
branches:
- master
jobs:
faency:
name: Deploy
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup node
uses: actions/setup-node@v2
with:
node-version: '18'
registry-url: 'https://registry.npmjs.org'
- name: Config git
run: |
git config --local user.email "[email protected]"
git config --local user.name "traefiker"
- name: Cache node modules
uses: actions/cache@v3
env:
cache-name: cache-node-modules
with:
# npm cache files are stored in `~/.npm` on Linux/macOS
path: ~/.npm
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Install
run: npm install
- name: Test
run: npm run test:ci
- name: Build
run: npm run build
- name: Deploy
run: npm run deploy-storybook
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}