chore(deps-dev): bump babel-jest from 26.6.3 to 29.6.2 in /client #908
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: continuous integration | |
on: [push] | |
jobs: | |
client-ci: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: client | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '16' | |
- name: Install npm dependencies | |
run: yarn install --frozen-lockfile --prefer-offline | |
- name: Run linter | |
run: yarn lint | |
- name: Run unit tests | |
run: yarn test:unit | |
- name: Build Nuxt project | |
run: yarn build | |
server-ci: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: server | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '16' | |
- name: Install npm dependencies | |
run: yarn install --frozen-lockfile --prefer-offline | |
- name: Run linter | |
run: yarn lint | |
- name: Run unit tests | |
run: yarn test | |
dbms-ci: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: dbms | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '16' | |
- name: Install npm dependencies | |
run: yarn install --frozen-lockfile --prefer-offline | |
- name: Run linter | |
run: yarn lint | |
- name: Run unit tests | |
run: yarn test |