Skip to content
This repository was archived by the owner on Nov 20, 2024. It is now read-only.

chore(deps): bump tar from 6.2.0 to 6.2.1 in the security group (#85) #75

chore(deps): bump tar from 6.2.0 to 6.2.1 in the security group (#85)

chore(deps): bump tar from 6.2.0 to 6.2.1 in the security group (#85) #75

Workflow file for this run

name: Branch checks
on:
push:
branches:
- main
env:
CI: true
jobs:
lint:
timeout-minutes: 15
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v4
- name: Node.js 18
uses: actions/setup-node@v4
with:
node-version: 18
cache: "npm"
# Reset the README.md after generate, else Prettier will fail
- name: Run lint
run: |
npm install
npx compas generate application --skip-lint
git checkout -- README.md
npx compas lint
test:
timeout-minutes: 15
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v4
- name: Node.js 18
uses: actions/setup-node@v4
with:
node-version: 18
cache: "npm"
- name: Run tests
run: |
npm install
npx compas generate application --skip-lint
npx compas docker up
npx compas migrate
npx compas test