starting to build gitea actions
All checks were successful
Build package / build (14.x) (push) Successful in 51s
Build package / build (16.x) (push) Successful in 11s
Build package / build (18.x) (push) Successful in 12s
Build package / build (20.x) (push) Successful in 12s

This commit is contained in:
James Brumond 2023-08-16 18:53:22 -07:00
parent 7135d03438
commit 6eec3cfa8a
Signed by: james
GPG Key ID: E8F2FC44BAA3357A

View File

@ -0,0 +1,26 @@
name: Build package
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x, 20.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run tsc