Use laravel's default authentication instead of Fortify #147
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: Nuxt.js | |
on: | |
pull_request: | |
branches: ["*"] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./client | |
steps: | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16.x | |
- uses: actions/checkout@v3 | |
- name: Install Dependencies | |
run: npm install | |
- name: Build Project | |
run: npm run build | |
prettier: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./client | |
steps: | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16.x | |
- uses: actions/checkout@v3 | |
- name: Install Dependencies | |
run: npm install | |
- name: prettier Version | |
run: ./node_modules/prettier/bin/prettier.cjs --version | |
- name: prettier Dry Run (ts) | |
run: ./node_modules/prettier/bin/prettier.cjs --check **/*.ts | |
- name: prettier Dry Run (vue) | |
run: ./node_modules/prettier/bin/prettier.cjs --check **/*.vue |