Skip to content

Work with server

Work with server #24

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
# Запускаем тесты и линтер

Check failure on line 33 in .github/workflows/main.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/main.yml

Invalid workflow file

You have an error in your yaml syntax on line 33
- name: Run tests and linter
run: npm run lint && npm test
# Собираем приложение
#- 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;