Skip to content

Merge pull request #82 from ff6347/ci/max-file-size-cache #278

Merge pull request #82 from ff6347/ci/max-file-size-cache

Merge pull request #82 from ff6347/ci/max-file-size-cache #278

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests
name: Node.js CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
env:
CI: true
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js from .nvmrc
uses: actions/setup-node@v4
with:
node-version-file: ".nvmrc"
- run: npm install esbuild @napi-rs/magic-string-linux-x64-gnu
- run: npm ci
- run: npm run build --if-present
- run: npm run test --if-present
release:
name: semantic-release
needs: [build]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- uses: actions/setup-node@v4
with:
node-version-file: ".nvmrc"
- run: |
npm ci
npx semantic-release --ci
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}