Skip to content
This repository has been archived by the owner on Apr 17, 2024. It is now read-only.

docs: project moved #45

docs: project moved

docs: project moved #45

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
name: 'Build - Test - [Publish]'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '16.13'
registry-url: 'https://registry.npmjs.org'
cache: 'yarn'
- run: yarn --frozen-lockfile
- run: yarn build
- run: yarn test
- run: cp README.md packages/vanilla-hcaptcha
- name: 'Publish'
if: contains('refs/heads/master', github.ref)
run: lerna publish -y from-package
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}