This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Installs Brew Cask apps for a new Mac OS installation | |
brew cask install google-cloud-sdk font-fira-code-nerd-font | |
brave-browser spotify visual-studio-code discord spectacle notion | |
authy firefox authy alfred nextdns zoom | |
ishowu-instant insomnia dash bartender slack | |
docker microsoft-outlook |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const GITHUB_ISSUES_LIST_QUERY = gql` | |
${GITHUB_ORG_INFO_CARD_FRAGMENT} | |
${GITHUB_ISSUE_COUNT_CARD_FRAGMENT} | |
${GITHUB_ISSUE_INFO_CARD_FRAGMENT} | |
query GithubIssuesListContainerQuery { | |
...GithubOrgInfoCardFragment | |
issues { | |
...GithubIssueCountCardFragment | |
pageInfo { | |
endCursor |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { GithubIssueInfoCardFragment } from "../../graphql-types"; | |
interface GithubIssueInfoCardProps { | |
issueDetails: GithubIssueInfoCardFragment; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { | |
GITHUB_ISSUE_INFO_CARD_FRAGMENT, | |
GithubIssueInfoCard, | |
} from "./GithubIssueInfoCard"; | |
const NOTIFICATIONS_LIST_QUERY = gql` | |
${GITHUB_ISSUE_INFO_CARD_FRAGMENT} | |
query NotificationsContainerQuery { | |
notifications { | |
totalCount |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const GITHUB_ISSUES_LIST_QUERY = gql` | |
${GITHUB_ISSUE_INFO_CARD_FRAGMENT} | |
query GithubIssuesListContainerQuery { | |
organization { | |
id | |
name | |
} | |
issues { | |
totalCount | |
pageInfo { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const GITHUB_ISSUES_LIST_QUERY = gql` | |
query GithubIssuesListContainerQuery { | |
organization { | |
id | |
name | |
} | |
issues { | |
totalCount | |
pageInfo { | |
endCursor |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# .github/workflows/test-and-release.yaml | |
name: Test and Release | |
on: [push] | |
jobs: | |
test-and-release: | |
name: Run tests and release | |
runs-on: ubuntu-18.04 | |
steps: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"publishConfig": { "access": "public", "branches": ["master"] } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"version": "0.0.0-development", |
NewerOlder