This repository has been archived by the owner on Jun 13, 2024. It is now read-only.
build(deps): bump ip from 2.0.0 to 2.0.1 #58
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: Codegen | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} | |
on: | |
workflow_dispatch: | |
pull_request: | |
paths: | |
- 'yarn.lock' | |
- 'tools/devkit/**' | |
- 'templates/**' | |
push: | |
branches: [main] | |
paths: | |
- 'yarn.lock' | |
- 'tools/devkit/**' | |
- 'templates/**' | |
jobs: | |
nodejs-template-codegen-validate: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: 'package.json' | |
cache: yarn | |
- name: Install dependencies | |
run: yarn install --immutable | |
- name: validate | |
run: yarn dev ts-mustache-codegen |