new nw logo #42
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
pull_request: | |
branches: [ master ] | |
types: [ opened, closed ] | |
workflow_dispatch: | |
jobs: | |
lint-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout this repository | |
uses: actions/checkout@v2 | |
with: | |
token: ${{ secrets['GITHUB_TOKEN'] }} | |
ref: ${{ github.ref }} | |
fetch-depth: 0 | |
path: ./sac-overlays | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: 'npm' | |
cache-dependency-path: ./sac-overlays/package-lock.json | |
- name: Install NPM dependencies | |
working-directory: ./sac-overlays | |
run: npm ci | |
env: | |
GSAP_AUTH: ${{ secrets.GSAP_AUTH }} | |
- name: Run ESLint on source | |
working-directory: ./sac-overlays | |
run: npm run lint | |
- name: Set up GitHub for SSH access | |
if: github.ref == 'refs/heads/master' | |
uses: webfactory/ssh-agent@master | |
with: | |
ssh-private-key: ${{ secrets['GH_SSH'] }} | |
- name: Set git config | |
if: github.ref == 'refs/heads/master' | |
working-directory: ./sac-overlays | |
run: | | |
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com" | |
git config --local user.name "github-actions[bot]" | |
- name: Merge master branch into build branch | |
if: github.ref == 'refs/heads/master' | |
continue-on-error: true | |
working-directory: ./sac-overlays | |
run: | | |
git checkout master | |
git checkout build | |
git merge master | |
- name: Build | |
if: github.ref == 'refs/heads/master' | |
working-directory: ./sac-overlays | |
run: | | |
npm run clean | |
npm run build | |
- name: Commit built files | |
if: github.ref == 'refs/heads/master' | |
id: commit | |
continue-on-error: true | |
working-directory: ./sac-overlays | |
run: | | |
git add -f graphics | |
git commit -m "Build result from master branch" -a | |
- name: Push built files to "build" branch | |
if: github.ref == 'refs/heads/master' | |
uses: ad-m/github-push-action@master | |
with: | |
github_token: ${{ secrets['GITHUB_TOKEN'] }} | |
branch: build | |
directory: ./sac-overlays |