Skip to content

Merge pull request #38 from ShtibsDev/dependabot/npm_and_yarn/prisma-… #76

Merge pull request #38 from ShtibsDev/dependabot/npm_and_yarn/prisma-…

Merge pull request #38 from ShtibsDev/dependabot/npm_and_yarn/prisma-… #76

Workflow file for this run

name: smoke test
on:
push:
branches: [main]
pull_request:
branches: [main, alpha, beta]
jobs:
smoke-test:
strategy:
matrix:
os: ['ubuntu-latest', 'windows-latest', 'macos-latest']
node: ['16', '18']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: 'npm'
- name: install
run: |
npm i
- name: build
run: |
npm run build
# - name: test
# run: |
# npm run test