Skip to content

unbreak template initialization workflow #90

unbreak template initialization workflow

unbreak template initialization workflow #90

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@v3
- uses: actions/setup-node@v3
with:
node-version: 16
- run: npm ci
- run: npm run lint
- run: npm run build
- run: npm run test:unit