Skip to content

chore(deps): bump actions/upload-artifact from 3 to 4 #225

chore(deps): bump actions/upload-artifact from 3 to 4

chore(deps): bump actions/upload-artifact from 3 to 4 #225

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 }}