update sc version in README #281
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@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- name: "Install Dependencies" | |
run: npm install | |
- 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 }} |