Skip to content

Web sample app

Web sample app #3

Workflow file for this run

name: run-tests
on:
pull_request:
push:
branches: main
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['18.x', '20.x']
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: yarn install
run: yarn
- name: run formatting and license check
run: yarn format:check
- name: run unit tests (includes lint)
run: yarn test