vscode-appwrite/.github/workflows/ciBuild.yml
alexweininger bdff542ef9 update CI
2021-05-31 01:29:41 -05:00

36 lines
960 B
YAML

# 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: CIBuild
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
# 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
- run: npx vsce package
- uses: actions/upload-artifact@v2
with:
name: vsix
path: '*.vsix'
if-no-files-found: error # 'warn' or 'ignore' are also available, defaults to `warn`