create-react-ssr/.github/workflows/npm-test.yml
Alejandro Lembke Barrientos c8f9d61526 PR-113325:
Adding CI/CD in github actions and updating packages.
2022-07-29 03:22:02 +00:00

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