mirror of
https://github.com/garraflavatra/alphabets.git
synced 2025-01-18 21:27:58 +00:00
32 lines
534 B
YAML
32 lines
534 B
YAML
name: Build and test
|
|
|
|
on: [ push, pull_request ]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
matrix:
|
|
node-version: [10.x, 12.x, 14.x, 15.x, 16.x]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
uses: actions/setup-node@v2
|
|
with:
|
|
node-version: ${{ matrix.node-version }}
|
|
|
|
- run: npm install
|
|
|
|
- run: npm run build
|
|
|
|
- uses: actions/upload-artifact@v2
|
|
with:
|
|
name: build
|
|
path: dist/
|
|
|
|
- run: npm run test
|