Skip to content
#

action

actions logo

GitHub Actions gives you the flexibility to build an automated software development lifecycle workflow. You can write individual tasks, called actions, and combine them to create a custom workflow. Workflows are custom automated processes that you can set up in your repository to build, test, package, release, or deploy any code project on GitHub.

“With GitHub Actions you can build end-to-end continuous integration (CI) and continuous deployment (CD) capabilities directly in your repository. GitHub Actions powers GitHub's built-in continuous integration service. For more information, see "About continuous integration."

Featured Actions

Getting Started

Community & Support

Taking Action With GitHub Actions

Here are 676 public repositories matching this topic...

deox
dannypule
dannypule commented Oct 4, 2019

This should fail because otherNum is not part of the State interface:

interface State {
  num: number
}

export const initialState: State = {
  num: 0
};

export const appsReducer = createReducer(initialState, handleAction => [
  handleAction(actions.getApps.success, () => ({
    num: 0,
    otherNum: 0 // adding this property should trigger a warning
  })),
]);
lukasmalkmus
lukasmalkmus commented Oct 9, 2020

For Go projects, I use tools.go to specify the tools the project depends on and pin the version in the go.mod file. This is pretty convenient. It would be awesome to have the action infer the version from the go.mod file. When upgrading, this makes it one file less to update the golangci-lint version.

With some guidance, I can probably tackle this. I'm just completely new to GitHub Acti

Created by GitHub

Released October 16, 2018

Organization
actions
Website
github.com/features/actions

Related Topics

ci docker
You can’t perform that action at this time.