Skip to content

Merge pull request #388 from VKCOM/dependabot/npm_and_yarn/swc/core-1… #398

Merge pull request #388 from VKCOM/dependabot/npm_and_yarn/swc/core-1…

Merge pull request #388 from VKCOM/dependabot/npm_and_yarn/swc/core-1… #398

Workflow file for this run

name: 'Main'
on:
push:
branches:
- main
concurrency:
group: main
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
permissions:
# Give the default GITHUB_TOKEN write permission to commit and push the changed files back to the repository.
contents: write
name: Build main
steps:
- name: Checkout
uses: actions/checkout@v4
with:
token: ${{ secrets.DEVTOOLS_GITHUB_TOKEN }}
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'yarn'
- name: Install dependencies
run: yarn install --frozen-lockfile --ignore-scripts
- name: Run Building
run: yarn run build
- uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: 'build(actions): update dist'