upgrading nodejs image #287
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: "PR Checks" | |
on: push | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
name: Action Test | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 22 | |
- name: "npm version" | |
run: npm version | |
- name: "Install Dependencies" | |
run: npm install | |
- name: "Check debug log" | |
run: cat /home/runner/.npm/_logs/2024-06-24*-debug-0.log | |
- name: "Build the package" | |
run: npm run build | |
- name: "Check if new build was checked in" | |
run: | | |
if [ $(git status --porcelain | wc -l) -gt 0 ] ; then | |
echo "Found uncommited changes. Did you forget to check in the dist/ folder?" | |
git status --porcelain | |
exit 1 | |
fi | |
- uses: ./ | |
with: | |
username: ${{ secrets.SAUCE_USERNAME }} | |
accessKey: ${{ secrets.SAUCE_ACCESS_KEY }} | |
tunnelName: github-action-tunnel | |
tunnelPool: true | |
configFile: ${{ github.workspace }}/sc-configuration/config.yaml | |
- name: "Run Test" | |
run: npm run test | |
env: | |
SAUCE_USERNAME: ${{ secrets.SAUCE_USERNAME }} | |
SAUCE_ACCESS_KEY: ${{ secrets.SAUCE_ACCESS_KEY }} |