Skip to content

Commit

Permalink
Merge pull request #18 from squarecloudofc/main
Browse files Browse the repository at this point in the history
update CI workflow
  • Loading branch information
joaotonaco authored Feb 11, 2024
2 parents 8ca3f65 + a069a45 commit ff52794
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: CI
on:
push:
branches:
- "**"
- main

jobs:
build:
Expand All @@ -11,8 +11,14 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18.x
node-version: 18.x
cache: "npm"

- run: npm install --no-package-lock
- run: npm run build
- run: npm run build

- uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: "build: ${{ github.sha }}"
branch: build
commit_options: "--no-verify"

0 comments on commit ff52794

Please sign in to comment.