Skip to content

Deps: Temporarily lock esbuild version #2856

Deps: Temporarily lock esbuild version

Deps: Temporarily lock esbuild version #2856

Workflow file for this run

name: Test
on:
push:
schedule:
- cron: '0 9 * * *' # every day at 9:00
jobs:
test:
name: Tests and linting
runs-on: ubuntu-22.04
timeout-minutes: 5
steps:
- name: Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- name: Set up Node
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4
with:
node-version: 18
- name: Fetch Git history
run: git fetch --no-tags --depth=50 origin main
- name: Install dependencies
uses: bahmutov/npm-install@v1
- name: Lint
run: yarn lint
- name: Check code-style format
run: yarn format
- name: Check types
run: yarn types
- name: Unit tests
run: yarn test:unit