- Inspiration from WPILib
- Create a new file in
.github/workflows/build.yml
- Copy the contents of
build.yml
into that new file
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
'use strict' | |
const query = require('./query') | |
const { to } = require('await-to-js') | |
const middy = require('middy') | |
const { cors } = require('middy/middlewares') | |
const getCountries = async () => { | |
let err | |
let results |
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 { PropsWithChildren, FC } from 'react' | |
import classnames from 'classnames' | |
type TypographyProps = PropsWithChildren<{ color?: string; className?: string; title?: string }> | |
export const H1: FC<TypographyProps> = ({ | |
children, | |
color = '', | |
className: customClasses, | |
...props |
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 {createStyled} from '@mui/system'; | |
import {useTheme} from '@mui/material'; | |
import type { MuiCustomThemeT } from './types'; | |
export const muiStyled = createStyled<MuiCustomThemeT>(); | |
export const muiUseTheme = useTheme<MuiCustomThemeT>(); |
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
## Dev Summary | |
[Figma](link) | |
[JIRA](link) | |
<!-- A detailed outline of what this pull requests includes --> | |
## Release Notes | |
<!-- |
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
name: Run Percy.io across Storybook Scenarios | |
on: | |
pull_request: | |
branches: [ main ] | |
jobs: | |
percy: | |
if: github.actor != 'dependabot[bot]' && github.actor != 'renovate[bot]' | |
runs-on: ubuntu-latest |
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
{ | |
"spacing": { | |
"xxxx-small": "2px", | |
"xxx-small": "4px" | |
}, | |
"color": { | |
"brand-primary-125": "#D14334", | |
"brand-primary": "#FF5B4A" | |
}, | |
"font-size": { |
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 * as React from 'react'; | |
import { | |
Input as BaseInput, | |
StyledEndEnhancer as BaseStyledEndEnhancer, | |
StyledStartEnhancer as BaseStyledStartEnhancer, | |
} from 'baseui/input' | |
import type { InputProps } from './types'; | |
import { themedWithStyle as withStyle } from '../style-utils' | |
import { padding } from 'polished' |
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
type ValueNumberNodeType = { | |
value?: number, | |
}; | |
type BasePredicate = { | |
nodeType: | | |
'ALL' | 'ANY' | 'AND' | 'BOOLEAN' | 'EQUALS_NUMBER' | 'GEOPOINT' | 'GREATER_THAN' | | |
'IS_INSIDE_REGION' | 'IS_NOT_SELECTED' | 'IS_SELECTED' | 'LESS_THAN' | 'NOT' | | |
'NOT_EQUALS_NUMBER' | 'NUMBER' | 'OR' | 'TEXT', | |
ref?: { |
NewerOlder