Skip to content

1707 vite

1707 vite #2562

Workflow file for this run

name: Lint, Test, and Build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
CI: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '20'
cache: 'yarn'
- name: Install dependencies with yarn
run: yarn install --frozen-lockfile
- name: Lint with eslint
run: yarn lint
- name: Test with jest
run: yarn test
- name: Build with TypeScript
run: yarn build