Pierre's feedback #3686
Workflow file for this run
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: Continous Integration | |
on: push | |
jobs: | |
CI: | |
runs-on: ubuntu-latest | |
steps: | |
# https://github.com/actions/checkout | |
- uses: actions/checkout@v3 | |
- name: Install packages | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y curl qemu-utils python3-vmdkstream git libxml2-utils libfuse2 nbdkit | |
- name: Cache Turbo | |
# https://github.com/actions/cache | |
uses: actions/cache@v3 | |
with: | |
path: '**/node_modules/.cache/turbo' | |
key: ${{ runner.os }}-turbo-cache | |
- name: Setup Node environment | |
# https://github.com/actions/setup-node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18' | |
cache: 'yarn' | |
- name: Install project dependencies | |
run: yarn | |
- name: Build the project | |
run: yarn build | |
- name: Lint tests | |
run: yarn test-lint | |
- name: Integration tests | |
run: sudo yarn test-integration |