Skip to content

Merge pull request #2 from k-nuth/feat/ci #2

Merge pull request #2 from k-nuth/feat/ci

Merge pull request #2 from k-nuth/feat/ci #2

Workflow file for this run

name: Knuth JS WASM
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
registry-url: 'https://registry.npmjs.org'
- name: Install dependencies
run: yarn
- name: Run tests
run: yarn test
- name: Publish package
run: yarn publish
if: github.ref == 'refs/heads/master' && matrix.node-version == '18.x'
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_AUTH_TOKEN}}