Skip to content

fix(typescript): remove legacy decorator config #283

fix(typescript): remove legacy decorator config

fix(typescript): remove legacy decorator config #283

Workflow file for this run

name: E2E-Windows
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test-e2e:
name: ${{ matrix.target_features }} with Nodejs v${{ matrix.node_version }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
node_version:
- 20
os:
- windows-latest
target_features:
- latest,webpack,babel
- latest,webpack,typescript
- latest,parcel,babel
- latest,parcel,typescript
- latest,dumber,babel
- latest,dumber,typescript
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node_version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node_version }}
- run: npm install
- run: npm run test:e2e
env:
TARGET_FEATURES: ${{ matrix.target_features }}