Skip to content

chore: create new release 1.4.1 #102

chore: create new release 1.4.1

chore: create new release 1.4.1 #102

Workflow file for this run

name: test
on:
workflow_dispatch:
push:
branches: [main]
pull_request:
types: [opened, synchronize]
concurrency:
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- name: 🏗 Setup repository
uses: actions/checkout@v4
- name: 🏗 Setup project
uses: ./.github/actions/setup-project
- name: 📦 Install dependencies
run: yarn install --frozen-lockfile
- name: ✅ Lint project
run: yarn lint
- name: 👷 Build project
run: yarn build