Skip to content

Feat: Add ContentContainer #20

Feat: Add ContentContainer

Feat: Add ContentContainer #20

Workflow file for this run

name: Development pipeline
on:
push:
branches:
- main
pull_request:
branches: [main]
types: [opened, synchronize]
jobs:
pre_deploy_pipeline_frontend:
if: ${{ !contains(join(github.event.commits.*.message, ', '), '#doc') }}
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: '20'
- name: Install dependencies
run: npm install
- name: Check style
run: npm run lint
- name: Run jest tests
run: npm test
- name: Run Cypress tests
uses: cypress-io/github-action@v6
with:
start: npm run dev
browser: chrome
version_change:
if: ${{ github.event_name == 'push' && !contains(join(github.event.commits.*.message, ', '), '#skip') }}
needs: [pre_deploy_pipeline_frontend]
runs-on: ubuntu-20.04
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- name: Change version tag
uses: anothrNick/github-tag-action@1.67.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DEFAULT_BUMP: patch