diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 29a2880..c100cfb 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -15,7 +15,7 @@ jobs: # This workflow contains a single job called "test" test: # The type of runner that the job will run on - runs-on: ubuntu-18.04 + runs-on: ubuntu-22.04 # Steps represent a sequence of tasks that will be executed as part of the job steps: @@ -25,14 +25,11 @@ jobs: - name: Setup Node uses: actions/setup-node@v1 with: - node-version: '10.x' + node-version: '14.x' # Runs a single command using the runners shell - - name: Install Yarn - run: npm install -g yarn - - name: Install Dependencies - run: yarn + run: npm install - name: Test - run: yarn test + run: npm run test diff --git a/package-lock.json b/package-lock.json index 8200182..f9c15e4 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "string-crypto", - "version": "3.0.1", + "version": "3.0.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "string-crypto", - "version": "3.0.1", + "version": "3.0.2", "license": "Apache-2.0", "bin": { "string-crypto": "bin/index.js" diff --git a/package.json b/package.json index ac43680..52c5e63 100644 --- a/package.json +++ b/package.json @@ -39,7 +39,8 @@ "scripts": { "build": "rollup -c && rm -f dist/*.d.ts && cp src/index.d.ts dist/index.d.ts", "dev": "concurrently \"rollup -cw\" \"nodemon --inspect runkit.js\"", - "test": "tsx ./src/index.test.ts && npm run build && node runkit.js" + "test": "tsx ./src/index.test.ts", + "test:full": "tsx ./src/index.test.ts && npm run build && node runkit.js" }, "devDependencies": { "@rollup/plugin-commonjs": "^15.0.0",