diff --git a/.github/workflows/actions-frontend.yml b/.github/workflows/actions-frontend.yml new file mode 100644 index 0000000..384d230 --- /dev/null +++ b/.github/workflows/actions-frontend.yml @@ -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