Make-use of Archivator to allow making reference from the blog for long term use #430
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
# https://github.com/pixijs/pixi.js/blob/dev/.github/workflows/nodejs.yml | |
# https://github.com/actions/setup-node | |
name: Node.js CI | |
on: | |
push: | |
branches: ['**'] | |
tags: ['**'] | |
release: | |
types: ['created'] | |
pull_request: | |
branches: ['**'] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [14.x] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: '14' | |
- run: yarn | |
- run: yarn build |