Bump file to 5.45 (#25) #67
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] | |
jobs: | |
build: | |
name: Build and Test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set variables | |
run: | | |
NODE_VERSION="$(< .nvmrc)" | |
echo "NODE_VERSION=$NODE_VERSION" >> $GITHUB_ENV | |
EMSDK_VERSION="$(awk 'NR==1{ match($0, /emsdk:([0-9.]*)$/, a); print a[1]; }' Dockerfile.Builder)" | |
echo "EMSDK_VERSION=$EMSDK_VERSION" >> $GITHUB_ENV | |
- name: Cache build artifacts | |
uses: actions/cache@v2 | |
with: | |
path: dist | |
key: cache-build-artifacts-${{ github.sha }} | |
- uses: mymindstorm/setup-emsdk@v10 | |
with: | |
version: ${{ env.EMSDK_VERSION }} | |
- name: Setup build tools | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y --no-install-recommends autoconf automake libtool xxd | |
- name: Setup Node | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
- name: Install dependencies | |
run: npm ci | |
- name: Build and Test | |
run: make fmt-check test package | |
publish: | |
name: Publish | |
environment: Publish | |
needs: build | |
runs-on: ubuntu-latest | |
if: github.event_name == 'push' && ( github.ref == 'refs/heads/master' || github.ref == 'refs/heads/main' ) | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Cache build artifacts | |
uses: actions/cache@v2 | |
with: | |
path: dist | |
key: cache-build-artifacts-${{ github.sha }} | |
- name: Publish | |
uses: mikeal/merge-release@master | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }} |