112 lines
3.0 KiB
YAML
112 lines
3.0 KiB
YAML
name: Deployment
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
jobs:
|
|
lint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Get code
|
|
uses: actions/checkout@v3
|
|
- uses: actions/setup-go@v3
|
|
with:
|
|
go-version: '1.20'
|
|
- uses: actions/go-hashfiles@v0.0.1
|
|
id: get-cache-hash
|
|
with:
|
|
patterns: |-
|
|
**/package-lock.json
|
|
- name: Cache dependencies
|
|
id: cache
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: node_modules
|
|
key: deps-node-modules-${{ steps.get-cache-hash.outputs.hash }}
|
|
- name: Install dependencies
|
|
if: steps.cache.outputs.cache-hit != 'true'
|
|
run: npm ci
|
|
- name: Lint code
|
|
run: npm run lint
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Get code
|
|
uses: actions/checkout@v3
|
|
- uses: actions/setup-go@v3
|
|
with:
|
|
go-version: '1.20'
|
|
- uses: actions/go-hashfiles@v0.0.1
|
|
id: get-cache-hash
|
|
with:
|
|
patterns: |-
|
|
**/package-lock.json
|
|
- name: Cache dependencies
|
|
id: cache
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: node_modules
|
|
key: deps-node-modules-${{ steps.get-cache-hash.outputs.hash }}
|
|
- name: Install dependencies
|
|
if: steps.cache.outputs.cache-hit != 'true'
|
|
run: npm ci
|
|
- name: Test code
|
|
id: run-tests
|
|
run: npm run test
|
|
- name: Upload test report
|
|
if: failure() && steps.run-tests.outcome == 'failure'
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: test-report
|
|
path: test.json
|
|
build:
|
|
needs: test
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Get code
|
|
uses: actions/checkout@v3
|
|
- uses: actions/setup-go@v3
|
|
with:
|
|
go-version: '1.20'
|
|
- uses: actions/go-hashfiles@v0.0.1
|
|
id: get-cache-hash
|
|
with:
|
|
patterns: |-
|
|
**/package-lock.json
|
|
- name: Cache dependencies
|
|
id: cache
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: node_modules
|
|
key: deps-node-modules-${{ steps.get-cache-hash.outputs.hash }}
|
|
- name: Install dependencies
|
|
if: steps.cache.outputs.cache-hit != 'true'
|
|
run: npm ci
|
|
- name: Build website
|
|
run: npm run build
|
|
- name: Package Artifacts
|
|
uses: https://github.com/thedoctor0/zip-release@0.7.1
|
|
with:
|
|
type: 'tar'
|
|
path: dist
|
|
filename: 'dist.tar.gz'
|
|
- name: Upload artifacts
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: dist.tar.gz
|
|
path: dist
|
|
deploy:
|
|
needs: build
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Get code
|
|
uses: actions/checkout@v3
|
|
- name: Get build artifacts
|
|
uses: actions/download-artifact@v3
|
|
with:
|
|
name: dist.tar.gz
|
|
path: ./dist
|
|
- name: Output contents
|
|
run: ls
|
|
- name: Deploy site
|
|
run: echo "Deploying..." |