Added readBundle #11
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
paths-ignore: | |
- "*.md" | |
branches: [main] | |
tags: | |
- "*" | |
pull_request: | |
branches: [main] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Git checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "20" | |
- name: Cache node_modules | |
uses: actions/cache@v4 | |
with: | |
path: | | |
~/.npm | |
~/.nvm | |
~/work/better-sqlite3-migrate/better-sqlite3-migrate/node_modules | |
~/work/better-sqlite3-migrate/better-sqlite3-migrate/package-lock.json | |
key: ${{ runner.os }}-node_modules-cache-v3-${{ hashFiles('package.json') }} | |
restore-keys: | | |
${{ runner.os }}-node_modules-cache-v3- | |
- name: Extract Tag Name | |
run: echo "TAG_NAME=$(echo ${GITHUB_REF##*/})" >> $GITHUB_ENV | |
if: ${{ startsWith(github.ref, 'refs/tags') }} | |
- name: Run tests | |
run: | | |
npm i | |
npx tsc | |
npx quick-lint-js ./*.mjs | |
npm run formatCheck | |
npx sql-bundle ./test/migrations | |
NODE_V8_COVERAGE=coverage0 npx c8 -r lcovonly --all --src ./src node --experimental-test-coverage ./test/all.mjs | |
if: ${{ env.TAG_NAME == '' }} | |
- name: Report coverage to Coveralls | |
uses: coverallsapp/github-action@v2 | |
if: ${{ env.TAG_NAME == '' }} | |
- name: Build SNAPSHOT | |
run: | | |
npm pack | |
if: ${{ env.TAG_NAME == '' }} | |
- name: Publish RELEASE | |
run: | | |
echo "//registry.npmjs.org/:_authToken=\${NPM_TOKEN}" > .npmrc | |
VERSION="$(echo "$TAG_NAME" | cut -d'v' -f 2)" | |
echo "Publish a release version=$VERSION for tag $TAG_NAME" | |
npm --no-git-tag-version --allow-same-version version $VERSION | |
npm publish | |
if: ${{ env.TAG_NAME != '' }} | |
env: | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |