Skip to content

clear unused files #187

clear unused files

clear unused files #187

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the workflow will run
on:
push:
branches:
- main
- beta
pull_request:
branches:
- main
- beta
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: "16.10"
# Runs a single command using the runners shell
- name: Init project
run: yarn install --frozen-lockfile
- name: Create .env file
run: |
touch .env
echo SILEX_FRONT_URL="http://localhost:3000" >> .env
echo ZOU_API_URL="http://localhost" >> .env
echo PORT="5118" >> .env
- name: Run test Mocha
run: |
yarn test