Skip to content

Commit

Permalink
requirements.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
Manwe-777 committed Aug 19, 2024
1 parent d89534e commit 9f21e4c
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 31 deletions.
61 changes: 30 additions & 31 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: "Build"

on:
on:
push:
branches: '**'
branches: "**"

jobs:
build-job:
Expand All @@ -11,34 +11,33 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-2019, macos-latest]

steps:
- name: "Setup node"
uses: actions/setup-node@v1
with:
node-version: '18'

- uses: actions/setup-python@v5
with:
python-version: '3.10'
cache: 'pip'

- name: Install Python setup tools
run: |
pip install setuptools
- name: "Checkout source code"
uses: "actions/checkout@v2"

- name: "Install modules"
run: "npm run install:ci"

- name: "Test"
run: "npm run jest:ci"

- name: "Install distutils"
run: "pip install setuptools"

- name: "Build (npm)"
run: "npm run build"
- name: "Setup node"
uses: actions/setup-node@v1
with:
node-version: "18"

- uses: actions/setup-python@v5
with:
python-version: "3.10"
cache: "pip"

- name: Install Python setup tools
run: |
pip install setuptools
- name: "Checkout source code"
uses: "actions/checkout@v2"

- name: "Install modules"
run: "npm run install:ci"

- name: "Test"
run: "npm run jest:ci"

- name: "Install distutils"
run: "pip install setuptools"

- name: "Build (npm)"
run: "npm run build"
Empty file added requirements.txt
Empty file.

0 comments on commit 9f21e4c

Please sign in to comment.