Skip to content

chore: release v1.0.0 #337

chore: release v1.0.0

chore: release v1.0.0 #337

Workflow file for this run

name: Build and Test
on:
pull_request:
workflow_call:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node_version: [18.x, 20.x]
command: ['lint', 'format', 'test:integration', 'build']
steps:
- uses: actions/checkout@v4
- name: Set Up node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node_version }}
cache: 'yarn'
- name: Install dependencies
run: yarn --immutable --immutable-cache
- run: yarn ${{ matrix.command }}