diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 42d9e7b..33df0c1 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,14 +12,14 @@ jobs: name: Test steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup Node.js and Yarn - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: '18' - - uses: actions/cache@v3 + - uses: actions/cache@v4 id: cache with: path: '**/node_modules' diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 04b7b78..0000000 --- a/.travis.yml +++ /dev/null @@ -1,14 +0,0 @@ -language: node_js -before_install: - - curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.17.3 - - export PATH=$HOME/.yarn/bin:$PATH -cache: - yarn: true - directories: - - node_modules - - test/node_modules -notifications: - email: false -node_js: - - "12" - - "14"