Skip to content

build(deps): bump semver from 5.7.1 to 5.7.2 #13

build(deps): bump semver from 5.7.1 to 5.7.2

build(deps): bump semver from 5.7.1 to 5.7.2 #13

Workflow file for this run

name: Build
on:
workflow_call:
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
group: build-${{ github.ref }}
cancel-in-progress: true
jobs:
build-yarn:
runs-on: ubuntu-22.04
steps:
- name: Setup node environment (for building)
uses: actions/setup-node@v3
with:
node-version: 18.16
- name: Check out repository
uses: actions/checkout@v3
- name: Fetch dependencies
run: |
yarn --frozen-lockfile
- name: Generate code
run: |
yarn codegen
- name: Build project
run: |
yarn build