Skip to content

Added install step to npm publish workflow #10

Added install step to npm publish workflow

Added install step to npm publish workflow #10

Workflow file for this run

name: tests
on: [push]
jobs:
test:
strategy:
matrix:
os: [macos-latest, ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Enable Corepack
run: corepack enable
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '21.x'
cache: yarn
cache-dependency-path: yarn.lock
- name: Install dependencies
run: yarn install --immutable
- name: Run tests
run: yarn test