Remove js
dependency from packages/types
#280
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: | |
env: | |
CLEAR_LOCK_FILES: false | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [16.x, 18.x, 20.x] | |
fail-fast: false | |
steps: | |
- name: Check variables | |
if: ${{ env.CLEAR_LOCK_FILES != 'true' && env.CLEAR_LOCK_FILES != 'false' }} | |
run: echo "Variable CLEAR_LOCK_FILES is ${{ env.CLEAR_LOCK_FILES }}, but should be 'true' or 'false'" && exit 1 | |
- uses: actions/checkout@v3 | |
- name: Set up Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
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: ${{ env.CLEAR_LOCK_FILES == 'true' }} | |
run: rm yarn.lock packages/*/yarn.lock | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile | |
- name: Bootstrap packages | |
run: yarn bootstrap | |
- name: Build packages | |
run: yarn build | |
- name: Run tests | |
run: yarn test |