This repository has been archived by the owner on Oct 15, 2023. It is now read-only.
Changement lien dans le README Papillon->papillon-v5 (#172) #1063
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: Build | |
on: | |
push: | |
branches: | |
- development | |
pull_request: | |
branches: | |
- master | |
- beta-releases | |
- development | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
cache: npm | |
- name: Setup dependencies | |
run: | | |
npm i -g @ionic/cli | |
npm i | |
- name: Build | |
run: ionic build |