27 lines
521 B
YAML
27 lines
521 B
YAML
name: Version Bump
|
|
|
|
on:
|
|
push:
|
|
branches: [ develop, main ]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Set up Ruby
|
|
uses: ruby/setup-ruby@v1
|
|
- name: Install dependencies
|
|
run: yarn install
|
|
- name: ESLint
|
|
run: yarn lint
|
|
- name: Build
|
|
run: yarn build
|
|
- name: Test
|
|
run: yarn test
|
|
- name: Bump Version
|
|
run: yarn release
|