Skip to content

fix: update z-index for header #6

fix: update z-index for header

fix: update z-index for header #6

Workflow file for this run

name: Test, Lint, Build and Deploy on Github Pages
on:
push:
branches: [ "master", "main" ]
# Позволяет запустить этот рабочий процесс вручную на вкладке Actions
workflow_dispatch:
permissions:
contents: write
jobs:
build-and-deploy:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 18.x ]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
# Устанавливаем зависимости
- name: Install dependencies
run: npm install
# Запускаем тесты и линтер
- name: Run tests and linter
run: npm run lint
# Собираем приложение
- name: Build Application
run: npm run build
# Публикуем приложение на Github Pages
- name: Deploy to Github Pages
uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: dist
# Собираем Storybook
# - name: Build Storybook
# run: npm run build-storybook
#
# # Публикуем Storybook на Github Pages
# - name: Deploy Storybook to Github Pages
# uses: JamesIves/[email protected]
# with:
# branch: gh-pages
# folder: storybook-static
# commit-message: "Automatically publish Storybook"
# Останавливаем выполнение строго при неудачных тестах
- name: Fail on failed tests
run: |
if [ ${{ job.status }} == 'failure' ]; then exit 1; fi;