chore: swap release script #120
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: cycjimmy/semantic-release-action@v2 | |
with: | |
semantic_version: 17 | |
branches: | | |
[ | |
'+([0-9])?(.{+([0-9]),x}).x', | |
'main', | |
'next', | |
'next-major', | |
{name: 'beta', prerelease: true}, | |
{name: 'alpha', prerelease: true} | |
] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |