Skip to content

new: Add a core entry point for utils. #58

new: Add a core entry point for utils.

new: Add a core entry point for utils. #58

Workflow file for this run

name: Build
on:
push:
branches:
- master
pull_request:
jobs:
test:
name: Test
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18, 20]
fail-fast: true
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: yarn install --immutable
- run: yarn run type
# Required for our Git related tests
- run: git config --global user.name 'CI'
- run: git config --global user.email 'dummy@example.org'
- run: yarn run test
build:
name: Pack
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- run: yarn install --immutable
- run: yarn run pack