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: Playwright Tests | |
on: | |
push: | |
branches: [ main, master ] | |
pull_request: | |
branches: [ main, master ] | |
jobs: | |
test: | |
timeout-minutes: 60 | |
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
/* eslint-disable */ | |
/** | |
* @jest-environment jsdom | |
*/ | |
import { shallowMountQuasar } from '~/test/jest/utils' | |
import DataGrid from 'components/data/DataGrid.vue' | |
describe('DataGrid', () => { | |
const testSubject = shallowMountQuasar(DataGrid, { |
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
require('dotenv').config() | |
const { prisma } = require ('@upmetrics-platform/prisma/generated/prisma-client') | |
const { MongoClient, ObjectId } = require('mongodb') | |
void async function() { | |
let successCount = 0 | |
let failureCount = 0 | |
let skippedCount = 0 | |
let mongoOrgSettings = null | |
const d = new Date(); |
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
local wezterm = require 'wezterm' | |
return { | |
enable_tab_bar = false, | |
enable_scrollbar = false, | |
color_scheme = "Broadcast", | |
font = wezterm.font_with_fallback({ | |
"Iosevka", | |
"Symbols Nerd Font Mono" | |
}), | |
font_rules = { |
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
-- nvim cmp | |
use { 'hrsh7th/cmp-nvim-lsp'} | |
use { 'hrsh7th/cmp-buffer' } | |
use { 'hrsh7th/cmp-path'} | |
use { 'hrsh7th/cmp-cmdline'} | |
use { 'quangnguyen30192/cmp-nvim-ultisnips' } | |
use { 'hrsh7th/nvim-cmp', | |
config = function () | |
-- Setup nvim-cmp. | |
local cmp = require'cmp' |
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
-- Auto install plugin manager | |
local install_path = vim.fn.stdpath('data')..'/site/pack/packer/start/packer.nvim' | |
if vim.fn.empty(vim.fn.glob(install_path)) > 0 then | |
packer_bootstrap = vim.fn.system({'git', 'clone', '--depth', '1', 'https://github.com/wbthomason/packer.nvim', install_path}) | |
end | |
-- Plugins configurations |
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
-- Auto install plugin manager | |
local install_path = vim.fn.stdpath('data')..'/site/pack/packer/start/packer.nvim' | |
if vim.fn.empty(vim.fn.glob(install_path)) > 0 then | |
packer_bootstrap = vim.fn.system({'git', 'clone', '--depth', '1', 'https://github.com/wbthomason/packer.nvim', install_path}) | |
end | |
-- Plugins configurations |
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
# /Users/geekymartian/.config/tmuxinator/up2.yml | |
name: up2 | |
root: ~/workspace/up2-prototype | |
on_project_start: docker-compose up -d | |
on_project_stop: docker-compose down | |
windows: | |
- client: | |
root: ~/workspace/up2-prototype/up2-prototype-client | |
layout: main-vertical |
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
#include "minidox.h" | |
#include "action_layer.h" | |
#include "eeconfig.h" | |
extern keymap_config_t keymap_config; | |
/// HAS CHANGES!!!! | |
// Each layer gets a name for readability, which is then used in the keymap matrix below. | |
// The underscores don't mean anything - you can have a layer called STUFF or any other name. | |
// Layer names don't all need to be of the same length, obviously, and you can also skip them |
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
#include QMK_KEYBOARD_H | |
extern keymap_config_t keymap_config; | |
// Each layer gets a name for readability, which is then used in the keymap matrix below. | |
// The underscores don't mean anything - you can have a layer called STUFF or any other name. | |
// Layer names don't all need to be of the same length, obviously, and you can also skip them | |
// entirely and just use numbers. | |
#define _QWERTY 0 | |
#define _LOWER 3 |
NewerOlder