Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/integration_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout branch
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
token: ${{ secrets.CI_USER_TOKEN || secrets.GITHUB_TOKEN }}
repository: 'optimizely/travisci-tools'
Expand Down
11 changes: 6 additions & 5 deletions .github/workflows/react.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,14 @@ jobs:
node: [ '18', '20', '22', '24' ]
steps:
- name: Checkout branch
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set up Node ${{ matrix.node }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: 'npm'
- name: Install dependencies
run: npm install
run: npm ci
- name: Run tests
run: npm test

Expand All @@ -30,11 +31,11 @@ jobs:
runs-on: ubuntu-latest
needs: [ unitTests ]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ArtiomTr/jest-coverage-report-action@v2
with:
custom-title: 'Jest Coverage Report'
package-manager: 'yarn'
package-manager: 'npm'

integration_tests:
name: Run integration tests
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/react_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,17 @@ jobs:
uses: actions/checkout@v4

- name: Set up Node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18
registry-url: "https://registry.npmjs.org/"
always-auth: "true"
cache: 'npm'
env:
NODE_AUTH_TOKEN: ${{ secrets.PUBLISH_REACT_TO_NPM_FROM_GITHUB }}

- name: Install dependencies
run: npm install
run: npm ci

- id: npm-tag
name: Determine NPM tag
Expand Down
Loading