feat: add application management commands #36
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |