chore(deps): replace dependency babel-eslint with @babel/eslint-parser ^7.11.0 #330
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: 'Release' | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
commitlint: | |
name: 'CommitLint' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
path: . | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- run: echo "::set-output name=dir::$(yarn cache dir)" | |
id: yarn-cache-dir | |
- uses: actions/cache@v3 | |
with: | |
path: ${{ steps.yarn-cache-dir.outputs.dir }} | |
key: yarn-cache-12-${{ hashFiles('**/yarn.lock') }} | |
restore-keys: yarn-cache-12- | |
- run: bash ./scripts/ci/setup/default.sh | |
- run: bash ./scripts/ci/jobs/commitlint.sh | |
release_packages: | |
name: 'Packages' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
path: . | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- run: echo "::set-output name=dir::$(yarn cache dir)" | |
id: yarn-cache-dir | |
- uses: actions/cache@v3 | |
with: | |
path: ${{ steps.yarn-cache-dir.outputs.dir }} | |
key: yarn-cache-12-${{ hashFiles('**/yarn.lock') }} | |
restore-keys: yarn-cache-12- | |
- run: bash ./scripts/ci/setup/default.sh | |
- run: bash ./scripts/ci/jobs/release_packages.sh | |
env: | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
GH_TOKEN: ${{ secrets.GH_TOKEN }} |