next-client done #22
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: github-actions | |
# on: [push] | |
# jobs: | |
# build: | |
# runs-on: ubuntu-latest | |
# strategy: | |
# matrix: | |
# node-version: [20.10.0] | |
# os: [ubuntu-latest] | |
# steps: | |
# - name: Git Checkout | |
# uses: actions/checkout@v4 | |
# - name: Setup Node env | |
# uses: actions/setup-node@v3 | |
# with: | |
# node-version: ${{ matrix.node-version }} | |
# cache: 'yarn' | |
# - name: Install dependencies | |
# run: yarn | |
# - name: Build @core/lib | |
# run: yarn lib:build | |
# - name: Build frontend | |
# run: yarn frontend:build | |
# - name: Build fastify-server | |
# run: yarn fastify-server:build |