Skip to content

chore(deps-dev): bump @typescript-eslint/parser from 5.59.8 to 5.61.0 #718

chore(deps-dev): bump @typescript-eslint/parser from 5.59.8 to 5.61.0

chore(deps-dev): bump @typescript-eslint/parser from 5.59.8 to 5.61.0 #718

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
# enable test runners to know where they are
env:
CI: true
concurrency:
group: test-${{github.ref}}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
nodejs: [16, 18]
steps:
- name: Checkout 🛎️
uses: actions/[email protected]
with:
persist-credentials: false
- name: Cache 📦
uses: actions/cache@v1
with:
path: ~/.npm # npm cache files are stored in `~/.npm` on Linux/macOS
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Setup ⬢
uses: actions/setup-node@v2-beta
with:
node-version: ${{ matrix.nodejs }}
- name: Install 🔧
run: npm install
- name: Build 🛠
run: npm run build
- name: Test/Coverage 🧪
run: TEST_TIMEOUT_FACTOR=3 npm run coverage
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Test/Browser 🧪
run: |
cd test/browser/server
npm install
cd ../../
npm run test:browser