vscode-appwrite/.github/workflows/ciBuild.yml

36 lines
960 B
YAML
Raw Permalink Normal View History

2021-04-30 08:11:57 +01:00
# 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
2021-04-30 09:25:51 +01:00
name: CIBuild
2021-04-30 08:11:57 +01:00
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
2021-04-30 10:53:59 +01:00
node-version: [14.x]
2021-04-30 08:11:57 +01:00
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
2021-05-14 21:48:43 +01:00
- run: npx vsce package
2021-05-14 21:46:07 +01:00
- uses: actions/upload-artifact@v2
with:
name: vsix
path: '*.vsix'
2021-05-14 21:48:43 +01:00
if-no-files-found: error # 'warn' or 'ignore' are also available, defaults to `warn`