Skip to content

ci: build check

ci: build check #2

Workflow file for this run

name: Build Check
on: [push, pull_request]
jobs:
test:
name: Build on node ${{ matrix.node_version }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node_version: ["18.x"]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node_version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node_version }}
- name: Install and build
run: |
yarn install
yarn build:prod