Bump to version 0.1.11 #23
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: build | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build-and-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build | |
run: | | |
npm install | |
npm run build | |
- name: Test | |
run: npm run test | |
- name: Build bundle | |
run: npm run bundle | |
- name: Update language | |
run: | | |
sudo add-apt-repository -y ppa:macaulay2/macaulay2 | |
sudo apt-get -y --no-install-recommends install macaulay2 | |
npm run update |