Skip to content

Create SECURITY.md

Create SECURITY.md #23

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