fix(deps): update dependencies (non-major) #302
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: Main | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
commit-lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Commit Lint | |
uses: wagoid/commitlint-github-action@v5 | |
code-lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Node.js environment | |
uses: actions/[email protected] | |
with: | |
node-version: '18' | |
- uses: actions/cache@v4 | |
with: | |
path: '**/node_modules' | |
key: ${{ runner.os }}-node-18-modules-${{ hashFiles('**/yarn.lock') }} | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile | |
- name: Format | |
run: yarn run format | |
- name: Lint | |
run: yarn run lint | |
release: | |
if: "!contains(github.event.commits[0].message, '[skip ci]')" | |
needs: [commit-lint, code-lint] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
persist-credentials: false | |
- name: Setup Node.js environment | |
uses: actions/[email protected] | |
with: | |
node-version: '18' | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile | |
- name: Build | |
run: yarn build | |
- name: Disable protection temporary | |
uses: actions/[email protected] | |
with: | |
github-token: '${{ secrets.GASTROBOT_TOKEN}}' | |
script: | | |
await github.rest.repos.deleteAdminBranchProtection({ | |
repo: '${{ github.event.repository.name }}', | |
owner: '${{ github.repository_owner }}', | |
branch: 'main', | |
}); | |
- run: npx semantic-release | |
env: | |
GITHUB_TOKEN: ${{ secrets.GASTROBOT_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
- name: Restore protection | |
uses: actions/[email protected] | |
if: always() | |
with: | |
github-token: '${{ secrets.GASTROBOT_TOKEN}}' | |
script: | | |
await github.rest.repos.setAdminBranchProtection({ | |
repo: '${{ github.event.repository.name }}', | |
owner: '${{ github.repository_owner }}', | |
branch: 'main', | |
}); |