Skip to content

Merge branch 'master' of https://github.com/AlexCovizzi/vscode-sqlite… #175

Merge branch 'master' of https://github.com/AlexCovizzi/vscode-sqlite…

Merge branch 'master' of https://github.com/AlexCovizzi/vscode-sqlite… #175

Workflow file for this run

name: CI
on:
push:
branches: [ '**' ]
pull_request:
branches: [ master ]
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Node.js 14.x
uses: actions/setup-node@v2
with:
node-version: '14'
- name: Install
run: |
npm install
npm run install-html
- name: Build
run: |
npm run compile
npm run build-html
- name: Test
run: |
npm run test
npm run test-html
- name: Package
run: npm run package
- name: Version
run: echo "VERSION=$(node -p -e "require('./package.json').version")" >> $GITHUB_ENV
- name: Upload artifact
uses: actions/upload-artifact@v1
with:
name: vscode-sqlite-@${{ github.sha }}
path: vscode-sqlite-${{ env.VERSION }}.vsix