Skip to content

Packages updates and few fixes #47

Packages updates and few fixes

Packages updates and few fixes #47

name: Pull Request Testing
on:
push:
# branches to consider in the event; optional, defaults to all
branches:
- master
# pull_request event is required only for autolabeler
pull_request:
branches:
- master
# # Only following types are handled by the action, but one can default to all as well
# types: [opened, reopened, synchronize]
jobs:
pull_request_tests:
runs-on: windows-latest
steps:
# build files
- name: Checkout files
uses: actions/checkout@v2
- name: NodeJS setup
uses: actions/setup-node@v2
with:
node-version: 20
registry-url: https://registry.npmjs.org/
- name: Installing dependencies
run: npm ci
- name: Build dev
run: npm run build
- name: Testing
run: npm run test