Skip to content

chore: update README with deprecation notice #227

chore: update README with deprecation notice

chore: update README with deprecation notice #227

Workflow file for this run

name: 'build-test'
on:
workflow_dispatch:
pull_request:
push:
branches:
- main
- 'releases/*'
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 16.x
cache: npm
- name: Install dependencies
run: npm ci
- name: Build and package
run: |
npm run build
npm run package
- name: Test Validate
uses: ./
if: always()
with:
args: --continue-on-error
github-token: ${{ secrets.GITHUB_TOKEN }}