Giter VIP home page Giter VIP logo

.github's Introduction

Skynet Labs Website

Code behind skynetlabs.com

Deployed to Skynet: 0409g27kkp4cfpj66e52qvhjk60sej6ia1dmemim0pr3qej404gmai0 (preview)

.github's People

Contributors

kwypchlo avatar mrcnski avatar msevey avatar ro-tex avatar

Watchers

 avatar  avatar

Forkers

fluffy9

.github's Issues

Lamide's test 2

Describe the bug

I'm not sure what it is

To Reproduce

Expected behavior

Screenshots

Version Information (please complete the following information):

Additional context

Test Case

Describe the bug

To Reproduce

Expected behavior

Screenshots

Version Information (please complete the following information):

Additional context

Email request testing lamide

Describe the bug

description of test

To Reproduce

Expected behavior

Screenshots

Version Information (please complete the following information):

Additional context

Issue again

Describe the bug

To Reproduce

Expected behavior

Screenshots

Version Information (please complete the following information):

Additional context

Update reusable dockerfile workflow to use matrices

Overview

Allow for matrices

Design or Proposal

GitHub reusable workflows don't support strategy so this post details a work around

https://github.community/t/reusable-workflow-with-strategy-matrix/205676

Caller workflow

name: Node.js CI

on:
  push:
    branches: [ main ]
  pull_request:
    branches: [ main ]

jobs:
  ci:
    uses: waldos-woof/actions-automation/.github/workflows/main.yml@main
    with: 
      versions: "[\"14.x\", \"16.x\"]"

reusable workflow

name: Node.js CI

on:
  workflow_call:
    inputs:
      versions:
        description: 'Stringified JSON object listing target Node versions'
        default: '14.x'
        required: false
        type: string

jobs:
  build:

    runs-on: ubuntu-latest

    strategy:
      matrix:
        node-version: ${{fromJson(inputs.versions)}}

    steps:
    - uses: actions/checkout@v2
    - name: Use Node.js ${{ matrix.node-version }}
      uses: actions/setup-node@v2
      with:
        node-version: ${{ matrix.node-version }}
    - run: npm ci
    - run: npm run build --if-present
    - run: npm test

Zapier Test Lamide

Describe the bug

Checking if this thing works

To Reproduce

Expected behavior

Screenshots

Version Information (please complete the following information):

Additional context

Common Changelog

Overview

Create a common changelog for Portal related repos.

Design or Proposal

Goals:

  • Include changelog from Webportal, Accounts, Skynet-js, MySky, Skyd

It probably needs to be triggered manually, cronjob or external tags might be ineffective.

Looking online, it seems that identifying repos as git submodules might be a way to pull in the changelogs. Should be able to just pull the latest version

Linear Test

Describe the bug

testing zap

To Reproduce

Expected behavior

Screenshots

Version Information (please complete the following information):

Additional context

Trial again

Describe the bug

To Reproduce

Expected behavior

Screenshots

Version Information (please complete the following information):

Additional context

Last Edge Case

Describe the bug

This is the org level edge case to be tested

To Reproduce

Expected behavior

Screenshots

Version Information (please complete the following information):

Additional context

Last try

Describe the bug

okay

To Reproduce

Expected behavior

Screenshots

Version Information (please complete the following information):

Additional context

Lamide's test again

Describe the bug

Insert descriptive summary here

To Reproduce

Expected behavior

Pull through to Linear

Screenshots

Version Information (please complete the following information):

Additional context

....

use npm rather than npx for prettier

If you mean the composite action in this repo, that is for yarn projects, and also requires more configuration whereas I prefer to have a single action that has all the basic checks.

For npm projects, using npx is the recommended way:

https://prettier.io/docs/en/install.html

npx will use the locally-installed version of prettier if found, according to these docs.

There's also a warning that you should not run npx if you don't have it added as a package. I suggest using npm run prettier --check . to ensure we're running the locally installed version and if it's not installed it should fail until we do.

Note: If you forget to install Prettier first, npx will temporarily download the latest version. That’s not a good idea when using Prettier, because we change how code is formatted in each release! It’s important to have a locked down version of Prettier in your package.json. And it’s faster, too.

Originally posted by @kwypchlo in #8 (comment)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.