Update kottage digest to 27373eb #2883
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: [pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '18' | |
cache: 'yarn' | |
- name: git setting | |
run: | | |
git config --local user.email "[email protected]" | |
git config --local user.name "hmiyado" | |
- run: yarn initialize | |
- env: | |
SOURCE_BRANCH: ${{ github.head_ref }} | |
run: sh scripts/update-patch-package.sh | |
- run: sh scripts/verify-openapi-client.sh | |
- run: yarn lint | |
- run: yarn test |