Skip to content

fix: pin "headers-polyfill" to 3.2.5 #588

fix: pin "headers-polyfill" to 3.2.5

fix: pin "headers-polyfill" to 3.2.5 #588

Workflow file for this run

name: ci
on:
push:
branches: [main]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [14, 16]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Unit tests
run: yarn test:internal
- name: Build
run: yarn build
- name: Node.js tests
run: yarn test:integration:node
- name: Browser tests
run: yarn test:integration:browser