Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: ci error 🐛 #91

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
with:
fetch-depth: 2

- run: git pull --rebase
- run: git pull --rebase origin master

- name: Install node_modules
run: yarn
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/format.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
name: Ensure code is formatted
on: [push, pull_request]
on:
push:
branches:
- 'master'

concurrency: ci-${{ github.ref }}

Expand All @@ -11,7 +14,8 @@ jobs:
with:
fetch-depth: 2

- run: git pull --rebase
- name: Pull latetst changes
- run: git pull --rebase origin master

- name: Install node_modules
run: yarn
Expand Down