diff options
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/check.yml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml new file mode 100644 index 0000000..56c83c5 --- /dev/null +++ b/.github/workflows/check.yml @@ -0,0 +1,25 @@ +name: Check ✅/ 🚫 + +on: + push: + branches: [ main ] + pull_request: + branches: [ main ] + +jobs: + check: + runs-on: ubuntu-latest + strategy: + matrix: + node-version: [ 14.x, 15.x, 16.x ] + steps: + - name: Checkout 🛒 + uses: actions/checkout@v2 + + - name: Setup Node.js - ${{ matrix.node-version }} 🚧 + uses: actions/setup-node@v2 + with: + node-version: ${{ matrix.node-version }} + + - name: Check 🙋♀️ + run: npm build |