Implement user import from CSV in Workspace #911
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: Makefile CI | |
on: | |
push: | |
branches: | |
- release/* | |
pull_request: | |
branches: [ main, stable* ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup NPM and Node | |
uses: skjnldsv/[email protected] | |
id: versions | |
with: | |
fallbackNpm: '^7' | |
fallbackNode: '^14' | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.2' | |
- name: Install dependencies | |
run: make | |
- name: Creating artifact | |
run: make source | |
- name: Upload a Build Artifact | |
uses: actions/[email protected] | |
with: | |
name: Workspace | |
path: ./build/artifacts/source/workspace.tar.gz |