Skip to content

feat: add application management commands #36

feat: add application management commands

feat: add application management commands #36

Workflow file for this run

name: Pull Request
on:
pull_request:
branches: [ master ]
jobs:
lint-build:
name: Lint and Build
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
with:
token: ${{ secrets.SEMANTIC_RELEASE_PAT }}
- name: Use Node 18
uses: actions/setup-node@v4
with:
node-version: 18.x
- name: Install deps (with cache)
uses: bahmutov/npm-install@v1
- name: Lint
run: yarn lint
- name: Build
run: yarn build