Merge pull request #373 from ItinerisLtd/dependabot/npm_and_yarn/type… #847
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: CI | |
on: push | |
jobs: | |
php: | |
name: Node ${{ matrix.node }} | |
runs-on: ubuntu-latest | |
if: "!contains(github.event.head_commit.message, '[ci skip]')" | |
strategy: | |
matrix: | |
node: ['18'] | |
steps: | |
- name: Checkout the project | |
uses: actions/checkout@v2 | |
- name: Setup the Node ${{ matrix.node }} environment on ${{ runner.os }} | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node }} | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Restore the Yarn cache directory | |
id: yarncache | |
run: echo "::set-output name=dir::$(yarn cache dir)" | |
- uses: actions/cache@v2 | |
with: | |
path: ${{ steps.yarncache.outputs.dir }} | |
key: ${{ runner.os }}-${{ matrix.node }}-yarn-${{ hashFiles('**/yarn.lock') }} | |
restore-keys: ${{ runner.os }}-${{ matrix.node }}-yarn- | |
- name: Install dependencies using Yarn | |
run: yarn install --frozen-lockfile | |
- name: Test package | |
run: yarn run test |