Bump meteor-node-stubs from 1.2.11 to 1.2.12 in /meteorapp #141
Workflow file for this run
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: GitHub CI | |
on: push | |
jobs: | |
ubuntu: | |
runs-on: ubuntu-24.04 | |
steps: | |
# Checks-out the repository under $GITHUB_WORKSPACE. | |
- uses: actions/checkout@v4 | |
- name: Cache Meteor.js installation | |
uses: actions/cache@v4 | |
env: | |
cache-name: cache-meteor | |
with: | |
# Meteor installation is located in `~/.meteor` on Linux. | |
path: ~/.meteor | |
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/meteorapp/.meteor') }} | |
- name: Cache NPM packages | |
uses: actions/cache@v4 | |
env: | |
cache-name: cache-npm | |
with: | |
path: $GITHUB_WORKSPACE/meteorapp/node_modules | |
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/meteorapp/package-lock.json') }} | |
- name: Install Debian packages | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y bash bzip2 curl git libfontconfig1 procps tar | |
- name: Download Meteor.js | |
run: | | |
curl https://install.meteor.com/ | sh | |
- name: Install Meteor packages | |
run: | | |
cd "$GITHUB_WORKSPACE"/meteorapp | |
export METEOR_ALLOW_SUPERUSER=1 | |
meteor npm install | |
- name: Tests | |
run: | | |
cd "$GITHUB_WORKSPACE"/meteorapp | |
export METEOR_ALLOW_SUPERUSER=1 | |
./tests.sh |