Skip to content

Merge pull request #218 from atomicjolt/dependabot/npm_and_yarn/webpa… #370

Merge pull request #218 from atomicjolt/dependabot/npm_and_yarn/webpa…

Merge pull request #218 from atomicjolt/dependabot/npm_and_yarn/webpa… #370

Workflow file for this run

name: Tests
on:
push:
branches: ["main"]
pull_request:
branches:
- next
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version-file: ".tool-versions"
- name: Install Node.js dependencies
run: npm ci
- name: Build
run: npm run build --workspaces
- name: Run tests
run: npm run test --workspaces --if-present