mirror of
https://github.com/vector-im/element-call.git
synced 2024-11-15 00:04:59 +08:00
9a546b7ea0
* typescript: increase typescript version - Use node types `@types/nodes` - Pin mermaid to pre release "^9.4.0-rc.2" - Increase linter version - Increase TS version to `4.9.5` * build: increase max heap size for Node
34 lines
918 B
YAML
34 lines
918 B
YAML
name: Build
|
|
on:
|
|
pull_request: {}
|
|
push:
|
|
branches: [main]
|
|
jobs:
|
|
build:
|
|
name: Build
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
- name: Yarn cache
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
cache: "yarn"
|
|
- name: Install dependencies
|
|
run: "yarn install"
|
|
- name: Build
|
|
run: "yarn run build"
|
|
env:
|
|
SENTRY_ORG: ${{ secrets.SENTRY_ORG }}
|
|
SENTRY_PROJECT: ${{ secrets.SENTRY_PROJECT }}
|
|
SENTRY_URL: ${{ secrets.SENTRY_URL }}
|
|
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
|
|
NODE_OPTIONS: "--max-old-space-size=4096"
|
|
- name: Upload Artifact
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: build
|
|
path: dist
|
|
# We'll only use this in a triggered job, then we're done with it
|
|
retention-days: 1
|