2022-01-17 07:01:13 +08:00
|
|
|
name: Build
|
|
|
|
on: push
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Install modules
|
2022-04-05 02:56:19 +08:00
|
|
|
run: npm ci
|
2022-03-02 06:47:28 +08:00
|
|
|
- name: Run build
|
2022-04-05 02:56:19 +08:00
|
|
|
run: npm run build
|