fix(deps): update dependency p-limit to v6 #1568
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: Development | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
test: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Install | |
run: yarn install --frozen-lockfile | |
- name: Check formatting | |
run: yarn test:format | |
- name: Lint code | |
run: yarn test:lint | |
- name: Unit tests | |
run: yarn test:unit | |
- name: Build code | |
run: yarn build | |
- name: Integration test | |
id: integration | |
uses: ./ | |
with: | |
from: 735d1768f09567d1b067bfdc952b2e7e44174dfe | |
to: 167440d0a93f955597713d0bd0a0e986b1cd6564 | |
labels: integration-test-label | |
color: aaaa00 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Compare integration step output | |
run: | | |
# Use toJSON(fromJSON(...)) to ensure the same formatting | |
expected="${{ toJSON(fromJSON('[5, 4, 3]')) }}" | |
result="${{ toJSON(fromJSON(steps.integration.outputs.issues)) }}" | |
if [ "$expected" != "$result" ]; then | |
echo "Expected to get $expected"; | |
echo "but got $result"; | |
exit 1; | |
fi |