Skip to content

Commit

Permalink
github action for linting
Browse files Browse the repository at this point in the history
  • Loading branch information
KTachibanaM committed Feb 16, 2024
1 parent 0198453 commit 6cb8004
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 26 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Lint

on:
push:
branches:
- master
pull_request:
branches:
- master

jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '20.x'

- name: Install dependencies
run: yarn install
working-directory: linter

- name: Build linter
run: yarn build-ts
working-directory: linter

- name: Run linter
run: yarn run-linter
working-directory: linter
9 changes: 0 additions & 9 deletions .travis.yml

This file was deleted.

2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# store-repos

[![Build Status](https://travis-ci.org/cloud-emoticon/store-repos.svg?branch=master)](https://travis-ci.org/cloud-emoticon/store-repos)

The repository store, revived on GitHub

## Repository metadata requirements
Expand Down
8 changes: 0 additions & 8 deletions travis-install.sh

This file was deleted.

7 changes: 0 additions & 7 deletions travis-run.sh

This file was deleted.

0 comments on commit 6cb8004

Please sign in to comment.