ci: add build tests

このコミットが含まれているのは:
sinkaroid 2023-04-18 13:01:11 +07:00
コミット 892727144b
この署名に対応する既知のキーがデータベースに存在しません
GPGキーID: ABD69470B2390135
1個のファイルの変更31行の追加0行の削除

31
.github/workflows/build.yml vendored ノーマルファイル
ファイルの表示

@ -0,0 +1,31 @@
name: Run build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Check lint
run: npm run lint
- name: Build
run: npm run build