Skip to content

Commit

Permalink
ci: switch from CircleCI to GitHub Actions
Browse files Browse the repository at this point in the history
まずはlintだけ。
将来的には、
[自動デプロイ · Issue #40 · ncaq/goodbye-rfc-2822-date-time](ncaq/goodbye-rfc-2822-date-time#40)
をやりたいのでアセットアップロードなどは移植しません。
  • Loading branch information
alexkoren-dev committed Aug 5, 2023
1 parent 4f32090 commit c90f1b2
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 36 deletions.
36 changes: 0 additions & 36 deletions .circleci/config.yml

This file was deleted.

14 changes: 14 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: lint
on: push
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
cache: "yarn"
node-version: "20.x"
- run: yarn --frozen-lockfile
- run: yarn package
- run: yarn lint

0 comments on commit c90f1b2

Please sign in to comment.