feat: various improvements #104
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: "CI" | |
on: | |
push: | |
branches: | |
- "main" | |
pull_request: | |
jobs: | |
lint: | |
name: "Lint" | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Checkout the repository" | |
uses: actions/checkout@v4 | |
- name: "Setup Biome" | |
uses: biomejs/setup-biome@v2 | |
- name: "Run Biome" | |
run: biome ci | |
build: | |
name: "Build" | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Checkout the repository" | |
uses: actions/checkout@v4 | |
- name: "Setup pnpm" | |
uses: pnpm/action-setup@v4 | |
- name: "Setup node" | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: package.json | |
cache: "pnpm" | |
- name: "Install dependencies" | |
run: pnpm install | |
- name: "Run Build" | |
run: pnpm run build | |
test-action: | |
name: "Test Action" | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Checkout the repository" | |
uses: actions/checkout@v4 | |
- name: "Test Action" | |
id: test-action1 | |
uses: ./ | |
with: | |
preset: "cloud-sql-proxy" | |
- name: "Show Outputs" | |
run: | | |
echo "path=${{ steps.test-action1.outputs.path }}" | |
echo "version=${{ steps.test-action1.outputs.version }}" | |
- name: "Test Action" | |
id: test-action2 | |
uses: ./ | |
with: | |
preset: "infisical-cli" | |
- name: "Show Outputs" | |
run: | | |
echo "path=${{ steps.test-action2.outputs.path }}" | |
echo "version=${{ steps.test-action2.outputs.version }}" | |
- name: "Show Versions" | |
run: | | |
cloud-sql-proxy --version | |
infisical --version |