You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
957 B
39 lines
957 B
2 years ago
|
name: Release
|
||
|
on:
|
||
|
repository_dispatch:
|
||
|
types: [rollingversions_publish_approved]
|
||
|
|
||
|
jobs:
|
||
|
test:
|
||
|
runs-on: ubuntu-latest
|
||
|
|
||
|
strategy:
|
||
|
matrix:
|
||
|
node-version: [10.x, 12.x, 14.x]
|
||
|
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
- name: Use Node.js ${{ matrix.node-version }}
|
||
|
uses: actions/setup-node@v1
|
||
|
with:
|
||
|
node-version: ${{ matrix.node-version }}
|
||
|
- run: yarn install --frozen-lockfile
|
||
|
- run: yarn prettier:check
|
||
|
- run: yarn test
|
||
|
|
||
|
publish:
|
||
|
runs-on: ubuntu-latest
|
||
|
needs: test
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
- uses: actions/setup-node@v1
|
||
|
with:
|
||
|
node-version: 12.x
|
||
|
registry-url: 'https://registry.npmjs.org'
|
||
|
- run: yarn install --frozen-lockfile
|
||
|
- run: yarn build
|
||
|
- run: npx rollingversions publish
|
||
|
env:
|
||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||
|
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|