Skip to content

Merge branch 'feature/prepare release' into develop #8

Merge branch 'feature/prepare release' into develop

Merge branch 'feature/prepare release' into develop #8

Workflow file for this run

name: Test
"on":
push:
branches:
- develop
- feature/**
- hotfix/**
- renovate/**
pull_request:
types:
- opened
- synchronize
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '18'
cache: yarn
- run: yarn install --frozen-lockfile
- run: yarn run build
- run: yarn run test
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '18'
cache: yarn
- run: yarn install --frozen-lockfile
- run: yarn run build
- run: yarn run lint