Set static metadata to v15 and update typegen to generate runtime apis and use v15 metadata #7083
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: PR | |
on: [pull_request] | |
jobs: | |
pr: | |
continue-on-error: true | |
strategy: | |
matrix: | |
step: ['lint', 'test', 'build', 'deno'] | |
runs-on: ubuntu-latest | |
env: | |
YARN_ENABLE_SCRIPTS: false | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 'lts/*' | |
- uses: denoland/setup-deno@v1 | |
with: | |
deno-version: vx.x.x | |
- name: ${{ matrix.step }} | |
if: always() | |
run: | | |
yarn install --immutable | |
yarn ${{ matrix.step }} |