Skip to content

Use getPrototypeOf instead of __proto__ (#1592) #465

Use getPrototypeOf instead of __proto__ (#1592)

Use getPrototypeOf instead of __proto__ (#1592) #465

Workflow file for this run

name: Test
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build-and-test:
runs-on: ubuntu-latest
env:
LANG: en_US.utf8
LIMIT_JEST: yes
TZ: America/New_York
strategy:
matrix:
node-version: [20.5.1]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- run: npm ci
- run: npm run build
- run: npm run format-check
- run: npm run test
- run: npm run site
- run: bash <(curl -s https://codecov.io/bash)