Skip to content

sqlite 3.45.2 (#581) #505

sqlite 3.45.2 (#581)

sqlite 3.45.2 (#581) #505

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: make
uses: ./.github/actions/build-sqljs
- uses: actions/upload-artifact@v2
with: {name: dist, path: dist}
- name: test
run: npm ci && npm test
- name: generate documentation
run: npm run doc
- name: Update github pages
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
uses: JamesIves/[email protected]
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages # The branch the action should deploy to.
FOLDER: "." # The folder the action should deploy.
CLEAN: false # Automatically remove deleted files from the deploy branch