mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-18 08:02:13 +03:00
12e477ac38
* ci: fix missing pnpm on check api action * Add set up node action
87 lines
2.3 KiB
YAML
87 lines
2.3 KiB
YAML
# Copyright 2019-2024 Tauri Programme within The Commons Conservancy
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
name: check generated files
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- '.github/workflows/check-generated-files.yml'
|
|
- 'tooling/api/src/**'
|
|
- 'core/tauri/scripts/bundle.global.js'
|
|
- 'core/tauri-utils/src/config.rs'
|
|
- 'tooling/cli/schema.json'
|
|
- 'core/tauri-config-schema/schema.json'
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
changes:
|
|
runs-on: ubuntu-latest
|
|
outputs:
|
|
api: ${{ steps.filter.outputs.api }}
|
|
schema: ${{ steps.filter.outputs.schema }}
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: dorny/paths-filter@v2
|
|
id: filter
|
|
with:
|
|
filters: |
|
|
api:
|
|
- 'tooling/api/src/**'
|
|
- 'core/tauri/scripts/bundle.global.js'
|
|
schema:
|
|
- 'core/tauri-utils/src/config.rs'
|
|
- 'tooling/cli/schema.json'
|
|
- 'core/tauri-config-schema/schema.json'
|
|
- 'core/tauri-acl-schema/*.json'
|
|
|
|
api:
|
|
runs-on: ubuntu-latest
|
|
needs: changes
|
|
if: needs.changes.outputs.api == 'true'
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- run: corepack enable
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 'lts/*'
|
|
cache: 'pnpm'
|
|
|
|
- name: build api
|
|
working-directory: tooling/api
|
|
run: pnpm i --frozen-lockfile && pnpm build
|
|
- name: check api
|
|
run: ./.scripts/ci/has-diff.sh
|
|
|
|
schema:
|
|
runs-on: ubuntu-latest
|
|
needs: changes
|
|
if: needs.changes.outputs.schema == 'true'
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: install stable
|
|
uses: dtolnay/rust-toolchain@stable
|
|
|
|
- name: install Linux dependencies
|
|
run: |
|
|
sudo apt-get update
|
|
sudo apt-get install -y libgtk-3-dev
|
|
|
|
- uses: Swatinem/rust-cache@v2
|
|
with:
|
|
workspaces: core -> ../target
|
|
|
|
- name: generate config schema
|
|
run: cargo build --manifest-path ./core/tauri-config-schema/Cargo.toml
|
|
|
|
- name: generate ACL schema
|
|
run: cargo build --manifest-path ./core/tauri-acl-schema/Cargo.toml
|
|
|
|
- name: check schema
|
|
run: ./.scripts/ci/has-diff.sh
|