Skip to content

v0.11.1

v0.11.1 #55

Workflow file for this run

name: CI
on:
push:
branches: ['main']
pull_request:
types: [opened, synchronize]
jobs:
build:
name: Build and Test (Node ${{ matrix.node }})
timeout-minutes: 15
runs-on: ubuntu-latest
strategy:
matrix:
node: [14, 16]
fail-fast: false
steps:
- name: Check out code
uses: actions/checkout@v2
with:
fetch-depth: 2
- name: Setup Node v${{ matrix.node }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
cache: 'yarn'
- name: Install Bun
uses: antongolub/action-setup-bun@v1
- name: Install dependencies
run: yarn
- name: Build
run: yarn build
- name: Test
run: yarn test