Skip to content

chore(deps): lock file maintenance #64

chore(deps): lock file maintenance

chore(deps): lock file maintenance #64

Workflow file for this run

name: Continuous Integration
on: push
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
name: Install dependencies and Build app
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: corepack enable
- name: Set Node.js 18.20.1
uses: actions/setup-node@v4
with:
node-version: 18.20.1
cache: yarn
- run: yarn install
- run: yarn prepare
- run: yarn typecheck
- run: yarn lint
- run: yarn build