Revert "move to ESModules" #70
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
# This workflow will test the build system, then build the extension and upload an artifact | |
name: Test build system and upload extension | |
on: | |
push: | |
# only trigger on branches, not on tags | |
branches: '**' | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: awalsh128/cache-apt-pkgs-action@latest | |
with: | |
packages: make gettext gnome-shell | |
version: 1.0 | |
- name: Test extension builds from scratch | |
run: | | |
make build | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: [email protected] | |
path: [email protected] |