Skip to content

Update Dockerfile to Multi-Stage (#175) #161

Update Dockerfile to Multi-Stage (#175)

Update Dockerfile to Multi-Stage (#175) #161

Workflow file for this run

name: main
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: "Force HTTPS"
run: git config --global url."https://github".insteadOf ssh://git@github
- name: "Checkout sources"
uses: actions/checkout@v4
- name: "Setup NodeJS"
uses: actions/setup-node@v4
with:
node-version: "20.x"
- name: "Install dependencies"
run: yarn install
- name: "Build"
run: yarn build
- name: "Run tests"
run: yarn test