Skip to content

bump es target to es2020 #138

bump es target to es2020

bump es target to es2020 #138

Workflow file for this run

name: CI
on: push
jobs:
run-linters:
name: Run CI
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 18
cache: 'npm'
- name: Install Node.js dependencies
run: npm ci
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name : Run test
run: npm run prepublishOnly
- uses: actions/upload-artifact@v4
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30