Skip to content

feat: add cancel stack functionality #229

feat: add cancel stack functionality

feat: add cancel stack functionality #229

Workflow file for this run

name: Continous Integration
on:
push:
branches:
- main
- production
- develop
pull_request:
types: [opened, synchronize, reopened]
branches:
- main
- production
- develop
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: πŸ§‘πŸ»β€πŸ’» Checkout code
uses: actions/checkout@v3
- name: πŸ₯· Setup node
uses: actions/setup-node@v3
with:
node-version: lts/hydrogen
check-latest: true
cache: "yarn"
- name: πŸŽͺ Install dependencies
run: yarn install --immutable
- name: πŸ› οΈ Build
run: yarn build:app
- name: πŸš‘ Typecheck
run: yarn typecheck
- name: πŸ”¬ Lint
run: yarn lint