Skip to content

Dependencies upgrade, workflows adaptation #45

Dependencies upgrade, workflows adaptation

Dependencies upgrade, workflows adaptation #45

Workflow file for this run

# This workflow will build the package using node when a commit is pushed or a pull request is opened
name: build
on:
push:
branches:
- master
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: ${{matrix.node-version}}
- name: Build
run: |
npm install
npm run build
test:
needs: build
uses: ./.github/workflows/test.yml
secrets: inherit