Skip to content

feat(types): Add additional type exports for UserEvent & Options (#1112) #116

feat(types): Add additional type exports for UserEvent & Options (#1112)

feat(types): Add additional type exports for UserEvent & Options (#1112) #116

Workflow file for this run

name: CI
on:
push:
branches:
[
'+([0-9])?(.{+([0-9]),x}).x',
'main',
'next',
'next-major',
'beta',
'alpha',
'!all-contributors/**',
]
pull_request:
branches-ignore: ['all-contributors/**']
jobs:
validate:
runs-on: ubuntu-latest
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v2
- name: πŸ“₯ Download deps
uses: bahmutov/npm-install@v1
with:
useLockFile: false
install-command: yarn --silent
env:
HUSKY_SKIP_INSTALL: true
- name: ✍ Lint
run: npm run lint
- name: πŸ§ͺ Test
run: npm run test -- --coverage
- name: 🚧 Build test environments
run: npm run setup:env
- name: πŸ”¬ Test with toolbox
run: npm run test:toolbox
- name: πŸ— Build
run: npm run build
- name: ⬆️ Upload coverage report
uses: codecov/codecov-action@v1
release:
needs: validate
runs-on: ubuntu-latest
if:
${{ github.repository == 'testing-library/user-event' &&
contains('refs/heads/main,refs/heads/beta,refs/heads/alpha', github.ref)
&& github.event_name == 'push' }}
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v2
- name: πŸ“₯ Download deps
uses: bahmutov/npm-install@v1
with:
useLockFile: false
install-command: yarn --silent
env:
HUSKY_SKIP_INSTALL: true
- name: πŸ—οΈ Run build script
run: npm run build
- name: πŸš€ Release
uses: ph-fritsche/action-release@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}