refactor: rename plugin_key: lix_own_entity
to lix_own_change_control
#6611
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: Continuous Integration | |
on: | |
push: | |
branches: | |
- "main" | |
pull_request: | |
branches: | |
- "main" | |
jobs: | |
ci: | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
version: [22] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout project | |
uses: actions/checkout@v3 | |
- name: Install Doppler CLI for env (public) variables | |
uses: dopplerhq/cli-action@v3 | |
- name: Setup Pnpm | |
uses: pnpm/action-setup@v4 | |
with: | |
version: 9 | |
- name: Install node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.version }} | |
cache: "pnpm" | |
- name: Install dependencies | |
run: pnpm install | |
- run: pnpm run ci | |
env: | |
DOPPLER_TOKEN: ${{ secrets.DOPPLER_CI_ENV_TOKEN }} |