Skip to content

Initial setup for wasm-lz4 project into Lichtblick #1

Initial setup for wasm-lz4 project into Lichtblick

Initial setup for wasm-lz4 project into Lichtblick #1

Workflow file for this run

name: CI
on:
push:
branches: [master]
tags: ["v*"]
pull_request:
branches: ["*"]
jobs:
wasm-lz4:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [14.x, 16.x, 18.x]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
registry-url: https://registry.npmjs.org
cache: "npm"
- run: npm ci
- run: npm run build
- run: npm test
- name: Publish to NPM
if: ${{ startsWith(github.ref, 'refs/tags/v') && matrix.node-version == '16.x' }}
run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }}