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](#40)
をやりたいのでアセット生成とかは放置。
  • Loading branch information
ncaq committed Aug 5, 2023
1 parent e701154 commit 645aafb
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 36 deletions.
36 changes: 0 additions & 36 deletions .circleci/config.yml

This file was deleted.

13 changes: 13 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
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 lint

0 comments on commit 645aafb

Please sign in to comment.