Skip to content

Commit

Permalink
Merge pull request #59 from nimblehq/release/1.0.2
Browse files Browse the repository at this point in the history
Release - 1.0.2
  • Loading branch information
hoangmirs authored Jul 14, 2022
2 parents 3cfbb9e + 0a85b77 commit efa8378
Show file tree
Hide file tree
Showing 16 changed files with 2,424 additions and 2,817 deletions.
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
/dist
**/*.js
5 changes: 1 addition & 4 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
{
"extends": ["oclif", "oclif-typescript"],
"rules": {
"unicorn/prefer-module": 0
}
"extends": ["@nimblehq/eslint-config-nimble"]
}
6 changes: 6 additions & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Team
# @hoangmirs is the Team Lead and the others are team members
* @hoangmirs @andyduong1920 @byhbt @hanam1ni @junan @longnd @rosle @Nihisil @bterone @Lahphim @malparty

# Engineering Leads
CODEOWNERS @nimblehq/engineering-leads
6 changes: 2 additions & 4 deletions .github/PULL_REQUEST_TEMPLATE/release_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,9 @@ Link to the project management tool for the release

## Features

Provide the ID and title of the issue in the section for each type (feature, chore and bug). The link is optional.
Provide the Pull Request IDs in the section for each type (feature, chore, and bug), e.g.

- [#1] As a user, I can log in
or
- [[#1](https://github.com/nimblehq/infrastructure-templates/issues/1234)] As a user, I can log in
- #1234

## Chores

Expand Down
28 changes: 28 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Lint

on: push

jobs:
lint:
name: Run linters
runs-on: ubuntu-latest
steps:
- name: Cancel previous runs
uses: styfle/[email protected]
with:
access_token: ${{ github.token }}

- name: Checkout
uses: actions/checkout@v3

- name: Setup node and restore cached dependencies
uses: actions/setup-node@v3
with:
node-version: '16'
cache: 'npm'

- name: Install dependencies
run: npm ci

- name: Run linters
run: npm run lint
2 changes: 0 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
name: Test

on:
push:
branches: [main]
pull_request:
types: [opened, synchronize]

Expand Down
Loading

0 comments on commit efa8378

Please sign in to comment.