Skip to content

Commit

Permalink
Merge pull request #85 from azujuuuuuun/feature/introduce-github-actions
Browse files Browse the repository at this point in the history
GitHub Actions を導入
  • Loading branch information
azujuuuuuun authored May 26, 2020
2 parents d72459b + 7bdd4ca commit 557e802
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/continuous-integration-workflow.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Continuous Integration Workflow
on: [push]

jobs:
build:
name: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: install
run: |
yarn install
- name: lint
run: |
yarn run lint
- name: type-check
run: |
yarn run type-check
- name: test
run: |
yarn run test
- name: build
run: |
yarn run build

0 comments on commit 557e802

Please sign in to comment.