Skip to content

testing

testing #364

Workflow file for this run

name: Build and test
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
node-version: [16]
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 pnpm
uses: pnpm/action-setup@v4
with:
version: 9
- name: 🤗 Install dependencies
run: pnpm install
- name: 🥸 Show me yourself
run: |
set -x
pnpm --version
node --version
pnpm tsc --version
npx tsc --version
- name: Build and test
timeout-minutes: 5
run: |
pnpm build
pnpm test
env:
CI: true