Make sure both locked and latest dependencies are used for E2E testing #316
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
workflow_dispatch: | |
inputs: | |
clearLockFiles: | |
description: "Clear yarn.lock files?" | |
required: false | |
type: boolean | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18.x, 20.x, 22.x] | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: yarn | |
cache-dependency-path: | | |
yarn.lock | |
packages/browser/yarn.lock | |
packages/bunyan/yarn.lock | |
packages/core/yarn.lock | |
packages/edge/yarn.lock | |
packages/js/yarn.lock | |
packages/koa/yarn.lock | |
packages/node/yarn.lock | |
packages/tools/yarn.lock | |
packages/types/yarn.lock | |
packages/winston/yarn.lock | |
- name: Setup yarn | |
run: npm install -g yarn | |
- name: Clear lock files | |
if: ${{ inputs.clearLockFiles }} | |
run: rm yarn.lock packages/*/yarn.lock | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile | |
- name: Build packages | |
run: yarn build | |
- name: Run tests | |
run: yarn test |