Get featured resources test coverage #3743
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
--- | |
jobs: | |
osweb: | |
runs-on: ubuntu-22.04 | |
steps: | |
- | |
name: "Checkout release tag" | |
uses: actions/checkout@v2 | |
- | |
name: "Setup NVM" | |
uses: dcodeIO/setup-node-nvm@master | |
with: | |
node-version: v16.20.2 | |
- | |
name: "Setup environment" | |
run: ./script/setup | |
- | |
name: "Build osweb" | |
run: ./script/build production | |
- | |
name: "Run tests" | |
run: ./script/test | |
- | |
name: Install SSH key | |
uses: shimataro/ssh-key-action@v2 | |
with: | |
key: ${{ secrets.JENKINS_RUNDECK_ID_RSA }} | |
name: id_rsa | |
known_hosts: ${{ secrets.KNOWN_HOSTS }} | |
- | |
name: "Create archive for packages.cnx.org" | |
run: ./script/archive | |
name: build | |
on: push |