25 lines
501 B
YAML
25 lines
501 B
YAML
name: build
|
|
run-name: build
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
build:
|
|
name: build
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Ignore SSL verification
|
|
run: |
|
|
git config --global http.sslVerify false
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version: latest
|
|
- run: npm ci
|
|
- run: npm run build
|
|
- uses: actions/upload-artifact@v3
|
|
with:
|
|
name: dist
|
|
path: dist/
|