chore: Migrate package manager from pnpm to yarn #360
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: Main workflow | |
on: [push] | |
jobs: | |
check: | |
name: Checks | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Setup | |
uses: ./.github/actions/setup | |
- name: Lint | |
run: yarn lint | |
- name: TypeCheck | |
run: yarn typecheck | |
unit-test: | |
name: Unit Tests | |
runs-on: ubuntu-latest | |
needs: check | |
steps: | |
- name: Checkout | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Setup | |
uses: ./.github/actions/setup | |
- name: Test | |
run: yarn test | |
- name: Build | |
run: yarn build | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
needs: check | |
steps: | |
- name: Checkout | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Setup | |
uses: ./.github/actions/setup | |
- name: Build | |
run: yarn build | |
- name: Upload Artifact | |
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3 | |
with: | |
name: lib | |
path: lib | |
integration-test: | |
name: Integration Tests | |
runs-on: ${{ matrix.os }} | |
needs: | |
- build | |
- unit-test | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Setup | |
uses: ./.github/actions/setup | |
- name: Download Artifact | |
uses: actions/download-artifact@9c19ed7fe5d278cd354c7dfd5d3b88589c7e2395 # v4.1.6 | |
- name: Run Integration Tests | |
uses: ./ | |
- name: Graphviz test | |
run: dot -V |