Skip to content

Merge pull request #8 from halitsever/dependabot/npm_and_yarn/semver-… #22

Merge pull request #8 from halitsever/dependabot/npm_and_yarn/semver-…

Merge pull request #8 from halitsever/dependabot/npm_and_yarn/semver-… #22

Workflow file for this run

name: Build
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
permissions:
contents: write
pull-requests: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: rm -rf ./dist
- run: yarn install
- run: yarn test
- run: yarn build
- run: rm -rf ./node_modules
- run: |
date > generated.txt
git config user.name github-actions
git config user.email github-actions@github.com
git add .
git commit -m "Builded by GH Actions"
git push