Skip to content

Commit

Permalink
Создаёт yml файл для actions фронта
Browse files Browse the repository at this point in the history
  • Loading branch information
semant1cs committed Oct 11, 2023
1 parent f7b4dcd commit e2ab200
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/actions-frontend.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Actions Frontend
on: [ push ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 18.x ]
steps:
- uses: actions/checkout@v3
- name: Project works on ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install modules
run: npm install
- name: Build project
run: npm run build
- name: Run dev mode
run: npm run dev

0 comments on commit e2ab200

Please sign in to comment.