build: updates release and tooling flows

This commit is contained in:
GitHub Actions
2022-04-11 09:26:44 +02:00
parent e5ba2cf34b
commit b07cc92b5c
15 changed files with 16112 additions and 2911 deletions

20
.github/workflows/merge.yml vendored Normal file
View File

@@ -0,0 +1,20 @@
name: Run tests
on: [pull_request]
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
node-version: [12.x, 14.x, 16.x]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
with:
token: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm it