fix: change footer permissions #2849
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: Lint | |
on: | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
- reopened | |
branches: | |
- main | |
- next | |
push: | |
branches: | |
- main | |
- next | |
jobs: | |
lint: | |
name: Lint | |
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 | |
- name: Copy schema files | |
run: npm run copy-schema-files | |
- name: Lint | |
run: npm run lint:root && npm --prefix api run lint:ci && npm --prefix admin run lint:ci && npm --prefix site run lint:ci | |
- name: Build | |
run: npm run build |