1
0
mirror of https://github.com/garraflavatra/alphabets.git synced 2025-01-19 05:37:59 +00:00
alphabets/.github/workflows/ci.yml

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