Skip to content

Add lint workflow @comet/create-app #2746

Add lint workflow @comet/create-app

Add lint workflow @comet/create-app #2746

Workflow file for this run

name: Lint
on:
pull_request:
types:
- opened
- synchronize
- reopened
branches:
- main
- next
push:
branches:
- main
- next
jobs:
lint-starter:
name: Starter
runs-on: ubuntu-latest
steps:
- run: echo "${{ github.actor }}"
- uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
- run: |
git config user.name github-actions
git config user.email [email protected]
- name: "Admin: Clone library translations"
uses: actions/checkout@v4
with:
repository: vivid-planet/comet-lang
token: ${{ secrets.GITHUB_TOKEN }}
path: "admin/lang/comet-lang"
- name: "Admin: Clone starter translations"
uses: actions/checkout@v4
with:
repository: vivid-planet/comet-starter-lang
token: ${{ secrets.GITHUB_TOKEN }}
path: "admin/lang/starter-lang"
- name: "Site: Clone starter translations"
uses: actions/checkout@v4
with:
repository: vivid-planet/comet-starter-lang
token: ${{ secrets.GITHUB_TOKEN }}
path: "site/lang/starter-lang"
- name: Use Node.js 22.x
uses: actions/setup-node@v4
with:
node-version: 22
cache: "npm"
cache-dependency-path: "**/package-lock.json"
registry-url: "https://registry.npmjs.org"
- name: Install dependencies
run: npm ci & npm --prefix api ci & npm --prefix admin ci & npm --prefix site ci & wait
- name: Copy schema files
run: npm run copy-schema-files
- name: Lint
run: npm run lint
- name: Build
run: npm run build
lint-create-app:
name: "@comet/create-app"
runs-on: ubuntu-latest
steps:
- name: "Checkout repository"
uses: actions/checkout@v4
- name: Use Node.js 22.x
uses: actions/setup-node@v4
with:
node-version: 22
cache: "npm"
cache-dependency-path: "create-app/package-lock.json"
- name: Install dependencies
run: npm --prefix create-app ci
- name: Lint
run: npm --prefix create-app run lint
- name: Build
run: npm --prefix create-app run build
- name: Create a new application
run: cd create-app/ && node bin/index.js test --no-install --no-commit
- name: Remove the site
run: cd create-app/test && node ../bin/index.js remove-site