chore(deps): update all non-major dependencies #8600
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: [pull_request, push] | |
jobs: | |
prepare: | |
name: Prepare | |
runs-on: ubuntu-latest | |
steps: | |
- name: Yarn setup | |
uses: DerYeger/yarn-setup-action@master | |
with: | |
node-version: 16 | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
needs: prepare | |
steps: | |
- name: Yarn setup | |
uses: DerYeger/yarn-setup-action@master | |
with: | |
node-version: 16 | |
- name: Build | |
run: yarn build | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
needs: prepare | |
steps: | |
- name: Yarn setup | |
uses: DerYeger/yarn-setup-action@master | |
with: | |
node-version: 16 | |
- name: Lint | |
run: yarn lint | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
needs: prepare | |
steps: | |
- name: Yarn setup | |
uses: DerYeger/yarn-setup-action@master | |
with: | |
node-version: 16 | |
- name: Test | |
run: yarn test | |
release: | |
name: Release | |
runs-on: ubuntu-latest | |
needs: [build, lint, test] | |
if: github.event_name == 'push' && github.ref == 'refs/heads/master' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@master | |
with: | |
token: ${{ secrets.PAT }} | |
- name: Semantic release | |
uses: cycjimmy/semantic-release-action@v4.1.0 | |
with: | |
extra_plugins: | | |
@semantic-release/changelog | |
@semantic-release/git | |
env: | |
GITHUB_TOKEN: ${{ secrets.PAT }} |