291st/.github/workflows/Continues Integration.yaml
Zakary Timson a1db74dd64
Some checks failed
Continues Integration / Install dependencies (push) Successful in 1m11s
Continues Integration / Push docker image (push) Failing after 1m37s
Update .github/workflows/Continues Integration.yaml
2023-07-28 16:16:27 +00:00

37 lines
926 B
YAML

name: Continues Integration
on: [push, workflow_dispatch]
jobs:
dependencies:
name: Install dependencies
container: node:16
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Restore Cached Dependencies
uses: actions/cache/restore@v3
with:
path: ./node_modules
key: node_modules
restore-keys: node_modules
- name: Install Dependencies
run: npm ci
- name: Cache Dependencies
uses: actions/cache@v3
with:
path: ./node_modules
key: node_modules
restore-keys: node_modules
Docker:
name: Push docker image
container: ubuntu:latest
steps:
- uses: ztimson/actions/docker@develop
with:
entrypoint: /bin/sh
image: 291st
secrets:
registry_user: ztimson
registry_pass: ${{secrets.deploy_token}}