Skip to content

added stun

added stun #535

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: push-build
# This workflow can be used for pushing to the production server and will only be ran when code is pushed to the main branch
on:
push:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
container: node:16
steps:
- uses: actions/checkout@v2
- name: Install Node.js dependencies
run: |
npm i -g pnpm
pnpm i
- name: Build App
run: pnpm run build
- name: Publish Artifact
uses: actions/upload-artifact@v3
with:
name: my-artifact
path: dist/