2023-05-12 00:44:53 +02:00
|
|
|
name: test
|
|
|
|
on:
|
|
|
|
push:
|
2023-05-12 00:46:15 +02:00
|
|
|
branches:
|
|
|
|
- master
|
2023-05-12 00:44:53 +02:00
|
|
|
workflow_dispatch:
|
|
|
|
pull_request:
|
|
|
|
types: [opened, synchronize, reopened, edited]
|
|
|
|
jobs:
|
|
|
|
main:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: install dependencies
|
|
|
|
run: npm install
|
|
|
|
- name: build
|
|
|
|
run: npm test
|