mirror of
https://github.com/aleleba/create-react-ssr.git
synced 2025-01-09 13:36:54 -06:00
24 lines
454 B
YAML
24 lines
454 B
YAML
|
name: Testing package
|
||
|
|
||
|
on:
|
||
|
pull_request:
|
||
|
branches: ['*']
|
||
|
jobs:
|
||
|
build:
|
||
|
|
||
|
runs-on: ubuntu-latest
|
||
|
|
||
|
strategy:
|
||
|
matrix:
|
||
|
node-version: [16.x]
|
||
|
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
|
||
|
|
||
|
steps:
|
||
|
- uses: actions/checkout@v3
|
||
|
- name: Use Node.js 16
|
||
|
uses: actions/setup-node@v3
|
||
|
with:
|
||
|
node-version: 16
|
||
|
cache: 'npm'
|
||
|
- run: npm ci
|
||
|
- run: npm test
|