Skip to content

Commit

Permalink
Modify CI for preparing public
Browse files Browse the repository at this point in the history
  • Loading branch information
akirakw committed Sep 27, 2023
1 parent 812cc02 commit bb73d72
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 21 deletions.
21 changes: 0 additions & 21 deletions .github/workflows/build.yml

This file was deleted.

36 changes: 36 additions & 0 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: tsurugi-annotations-action-CI

on: [pull_request, push, workflow_dispatch]

jobs:
Build:
runs-on: ubuntu-latest
timeout-minutes: 10
defaults:
run:
shell: bash

steps:
- name: Setup_Node
uses: actions/setup-node@v3
with:
node-version: 16

- name: Checkout
uses: actions/checkout@v3

- name: Install
run: |
npm install
- name: Build
run: |
npm run build
- name: Lint
run: |
npm run lint
- name: Test
run: |
npm test

0 comments on commit bb73d72

Please sign in to comment.