Skip to content

chore: use for..of instead of for..in #1765

chore: use for..of instead of for..in

chore: use for..of instead of for..in #1765

Workflow file for this run

name: test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: 'lts/*'
cache: 'npm'
- run: npm ci --no-audit
- run: npm test
- run: npm run coverage
- uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}