291st/.github/workflows/Continues Integration.yaml
Zakary Timson 9471a8bb31
All checks were successful
Continues Integration / Install dependencies (push) Successful in 1m12s
Update .github/workflows/Continues Integration.yaml
2023-07-28 14:47:29 +00:00

40 lines
965 B
YAML

name: Continues Integration
on: [push, workflow_dispatch]
jobs:
dependencies:
name: Install dependencies
runs-on: Docker
container:
image: 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: Install dependencies
runs-on: Docker
container:
image: docker:latest
steps:
- uses: ztimson/actions/docker@develop
with:
image: 291st
secrets:
registry_user: ztimson
registry_pass: ${{secrets.deploy_token}}