Bump credo from 1.7.0 to 1.7.1 in /elixir #253
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: Integration CI | |
on: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
merge_group: | |
types: | |
- checks_requested | |
workflow_dispatch: | |
jobs: | |
integration-ci: | |
name: Integration Testing | |
strategy: | |
fail-fast: true | |
matrix: | |
os: | |
- ubuntu-22.04 | |
node: | |
- 16 | |
pnpm: | |
- 8 | |
ruby: | |
- '3.1' | |
elixir: | |
- '1.14' | |
otp: | |
- '25' | |
runs-on: ${{ matrix.os }} | |
steps: | |
# Check out codde | |
- uses: actions/checkout@v4 | |
# Typescript Setup | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: ${{ matrix.pnpm }} | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node }} | |
cache: pnpm | |
cache-dependency-path: ts/pnpm-lock.yaml | |
- run: pnpm install --frozen-lockfile | |
working-directory: ./ts | |
# Ruby Setup | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
bundler-cache: true | |
working-directory: ./ruby | |
# Elixir Setup | |
- uses: erlef/setup-elixir@v1 | |
id: install | |
with: | |
otp-version: ${{ matrix.otp }} | |
elixir-version: ${{ matrix.elixir }} | |
- run: mix 'do' deps.get, deps.compile, compile | |
working-directory: ./elixir | |
- run: mkdir -p suite | |
# Generate | |
- name: Generate Typescript Integration Suite | |
run: pnpm cli:generate ../suite | |
working-directory: ./ts | |
- name: Generate Ruby Integration Suite | |
run: bundle exec ruby -S bin/app-identity-suite-ruby generate ../suite | |
working-directory: ./ruby | |
- name: Generate Elixir Integration Suite | |
run: mix app_identity generate ../suite | |
working-directory: ./elixir | |
# Run | |
- name: Run Typescript Verification | |
run: pnpm cli:run ../suite | ../integration/tapview | |
working-directory: ./ts | |
- name: Run Ruby Verification | |
run: bundle exec ruby -S bin/app-identity-suite-ruby run ../suite | ../integration/tapview | |
working-directory: ./ruby | |
- name: Run Elixir Integration Suite | |
run: mix app_identity run ../suite | ../integration/tapview | |
working-directory: ./elixir |