Skip to content

πŸŽ‰(all) re-bootstrap the project on top of betagouv/template-nextjs #13

πŸŽ‰(all) re-bootstrap the project on top of betagouv/template-nextjs

πŸŽ‰(all) re-bootstrap the project on top of betagouv/template-nextjs #13

Workflow file for this run

name: πŸ’ͺ Testing
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
concurrency:
cancel-in-progress: true
group: testing-${{ github.ref }}
jobs:
test:
name: Test
runs-on: ubuntu-22.04
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version-file: package.json
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Build workspaces
run: npm run build
- name: Run tests
run: npm run test