Skip to content

Commit

Permalink
Setup initial lint workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebastian Florek committed Jun 18, 2020
1 parent 37311f9 commit 7c7ece8
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Code Check & Linting

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: Setup Envrionment
env:
NG_CLI_ANALYTICS: ci
GO111MODULE: on
GOPROXY: "https://proxy.golang.org"
PATH: "$PATH:$GOPATH:/bin"
NODE_OPTIONS: "--max-old-space-size=8192"

- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: ^1.13

- name: Setup NodeJS
uses: actions/setup-node@v1.4.2
with:
node-version: ^10.15.0

- run: npm install
- run: ./aio/scripts/install-codegen.sh
- run: npm run check

0 comments on commit 7c7ece8

Please sign in to comment.