Skip to content

Cc switch to vite 09 09 #319

Cc switch to vite 09 09

Cc switch to vite 09 09 #319

Workflow file for this run

name: CI
on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main, develop ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
steps:
- name: Fetch source code
uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install node-modules
run: yarn install
- name: Run tests
run: yarn test:ci