Skip to content

Update tsconfig to use ES6, add troubleshooting in README #94

Update tsconfig to use ES6, add troubleshooting in README

Update tsconfig to use ES6, add troubleshooting in README #94

Workflow file for this run

# CI workflow to run on pushes and pull requests
# See https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions
name: Node.js CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
test:
runs-on: ubuntu-latest
if: ${{ github.repository != 'wikimedia-gadgets/twinkle-starter' }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- run: npm ci
- run: npm run lint
- run: npm run build
- run: npm run test:unit